-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
41 lines (30 loc) · 1.02 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
40
41
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Shelving Demo</title>
<link href="main.css" rel="stylesheet" type="text/css" charset="utf-8">
<!--
<script src="vendor/three.js/r84/build/three.js"></script>
-->
<script src="vendor/three.js/r84/build/three.min.js"></script>
<script src="vendor/three.js/r84/examples/js/controls/OrbitControls.js"></script>
<script src="vendor/three.js/r84/examples/js/loaders/MTLLoader.js"></script>
<script src="vendor/three.js/r84/examples/js/loaders/OBJLoader.js"></script>
<script src="vendor/three.js/stats/build/stats.min.js"></script>
<script src="vendor/dat.gui/dat.gui.js"></script>
<script src="app.js"></script>
</head>
<body>
<div id="preload">
<div>
<div>Loading...</div>
<progress value="0" max="100"></progress>
</div>
</div>
<canvas id="appCanvas" oncontextmenu="return false;">Browser not supported</canvas>
<video id="video" style="display: none;" src="assets/Big_Buck_Bunny_small.ogv"></video>
<div id="notification">
</div>
</body>
</html>