-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (31 loc) · 1.05 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<link href="favicon.svg" rel="icon" type="image/svg+xml"/>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<title>ZJU CG Course Final Project</title>
</head>
<body style="background-color: black">
<div class="copyrights">
<p style="font-size: 14px">ZJU 2021 Computer Graphics Course</p>
<p style="font-size: 18px">Final Project</p>
<div class="authors">
<p style="font-size: 14px">3190106167 林沅霖</p>
<p style="font-size: 14px">3190106122 劉哲愷</p>
</div>
</div>
<canvas id="glCanvas"></canvas>
<div class="repo-link">
<a href="https://github.com/ken20001207/computer-graphics-final-project">
https://github.com/ken20001207/computer-graphics-final-project
</a>
</div>
<div id="fps"></div>
<div class="pop-message hide" id="pop-message">
<p class="pop-message-title" id="pop-message-title"></p>
<p id="pop-message-content"></p>
</div>
<script src="/src/main.ts" type="module"></script>
</body>
</html>