-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (48 loc) · 1.12 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
<!DOCTYPE html>
<html>
<head>
<title>Impact</title>
<style type="text/css">
body {
margin: 0;
padding: 0;
border: 0;
background: black;
}
div {
position: fixed;
top: 0px;
color: gold;
font-size: 130%;
font-family: monospace;
}
#pos_test {
width: 64px;
height: 64px;
background-image: url("out.png");
position: absolute;
}
</style>
</head>
<body>
<div>
rock count:<span id="rock_count">0</span><br />
missile count:<span id="missile_count">0</span><br />
crash on earth:<span id="crash_earth">0</span><br />
boomed count:<span id="boom_count">0</span><br />
<span id="pos_test"></span>
<audio src="boom.ogg"></audio>
<audio src='miss.ogg'></audio>
</div>
<script src="js/three.js"></script>
<script src="js/fonts/helvetiker_bold.typeface.js"></script>
<script src="js/fonts/helvetiker_regular.typeface.js"></script>
<script src="js/TextGeometry.js"></script>
<script src="js/ArrayList.js"></script>
<script src="js/Rock.js"></script>
<script src="js/Missile.js"></script>
<script src="js/RockManager.js"></script>
<script src="js/MissileManager.js"></script>
<script src="js/impact.js"></script>
</body>
</html>