-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (32 loc) · 999 Bytes
/
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
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<title>Path Tracing</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div id="title">
<h1>Path Tracing</h1>
Made by <a href="#">Yiges.M.x.</a>
</div>
<div id="flex-container">
<div id="canvasContainer">
<div class="canvasInnerContainer">
<canvas id="canvas" width="512" height="512" tabindex="1"></canvas>
<div id="message"></div>
</div>
</div>
<div id = "time"><h3 style="text-align: center">Loading Time</h3></div>
<div id = "inst">
<h3 style="text-align: center">Interaction</h3>
Space: Pause <br/>
Left button: Rotate<br/>
Middle button: Translate<br/>
Right button: Zoom<br/>
</div>
</div>
<script src="js/main.js" type="module"></script>
</body>
</html>