-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (66 loc) · 1.81 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<html>
<head>
<title>Saul's Garage</title>
<style>
body {
font-family: Helvetica, Sans-serif;
font-size: 1.3em;
background-color: #000000;
margin: 0px;
overflow: hidden;
text-align: center;
}
canvas {
width: 100%;
height: 100%;
}
.ui-progressbar {
position: absolute;
width: 40%;
top:45%;
left:30%;
}
#footer { position: absolute; bottom: 10px; width: 100%; }
.h { color: darkturquoise }
#c { display: inline; margin-left: 2em; }
</style>
<script src="lib/jquery-2.1.4.min.js"></script>
<script src="lib/three.min.js"></script>
<script src="lib/TGALoader.js"></script>
<script src="lib/AssimpJSONLoader.js"></script>
<script src="lib/OrbitControls.js"></script>
<script src="lib/SpotLightHelper.js"></script>
<script src="lib/EffectComposer.js"></script>
<script src="lib/CopyShader.js"></script>
<script src="lib/ShaderPass.js"></script>
<script src="lib/RenderPass.js"></script>
<script src="lib/MaskPass.js"></script>
<script src="lib/dat.gui.min.js"></script>
<script src="lib/tween.min.js"></script>
<script src="lib/stats.min.js"></script>
<script src="lib/jquery-ui-1.11.4/jquery-ui.min.js"></script>
<link rel="stylesheet" type="text/css" href="lib/jquery-ui-1.11.4/jquery-ui.min.css">
<script src="js/Project.js"></script>
<script>
$(function() {
$( "#progressbar" ).progressbar({
value: false,
complete: function( event, ui ) {
$( "#progressbar" ).progressbar("destroy");
}
});
$.getJSON("assets.json").done(loadAll);
});
</script>
</head>
<body>
<div id="progressbar"></div>
<div id="footer" style="display:none">
light: <span class="h">L</span>
<div id="c">
start: <span class="h">S</span>
</div>
</div>
<script src="js/main.js"></script>
</body>
</html>