-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (40 loc) · 835 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
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>3d exhibition</title>
<style>
body{
margin: 0;
overflow: hidden;
}
.load-state{
position: fixed;
top: 50px;
left: 0;
}
.load-state>ul{
list-style: none;
padding-left: 10px;
font-size: 12px;
}
</style>
</head>
<body>
<div id="view"></div>
<div class="load-state">
<ul id="process"></ul>
</div>
<script src="./libs/three.js"></script>
<script src="./libs/FirstPersonControls.js"></script>
<script src="./libs/TrackballControls.js"></script>
<script src="./libs/ThreeBSP.js"></script>
<script src="./libs/stats.js"></script>
<script src="./libs/dat.gui.js"></script>
<script src="./libs/require.js"></script>
<script>
requirejs.config({baseUrl: './src', waitSeconds: 30});
require(['Exhibition']);
</script>
</body>
</html>