-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (76 loc) · 2.85 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
75
76
77
78
79
80
81
<!DOCTYPE html>
<html>
<head >
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div id="container">
<div id="gameContainer">
<div>
<label>Score:</label>
<label id="score">0</label>
<img id="nextEntity" src="img/beetle.png" />
<img id="secondEntity" src="img/beetle.png" />
<img id="thirdEntity" src="img/beetle.png" />
</div>
<canvas id="surface" width="600" height="600"></canvas>
<canvas id="debug" width="600" height="600"></canvas>
<div class="helpDiv">
<div>
<img src="img/beetle.png"/>
<img src="img/bee.png"/>
</div>
<div>
<img src="img/bird.png"/>
<img src="img/rabbit.png"/>
</div>
<div>
<img src="img/sheep.png"/>
<img src="img/donkey.png"/>
</div>
<div>
<img src="img/panda.png"/>
<img src="img/bull.png"/>
</div>
<div>
<img src="img/lion.png"/>
<img src="img/elephant.png"/>
</div>
<div>
<img src="img/whale.png"/>
</div>
<br /><br />
<div>
<a id="restart" href="#">重新开始</a>
</div>
</div>
<!--
<div id = "debugContainer">
<input type="checkbox" id="debugToggle">Debug</input>
</div>
-->
</div>
</div>
<script src="scripts/thirdparty/jquery.js"></script>
<script src='scripts/thirdparty/modernizr2.js' type="text/javascript"></script>
<script src="scripts/thirdparty/class.js"></script>
<script src="scripts/thirdparty/Box2dWeb-2.1.a.3.js"></script>
<script src="scripts/thirdparty/PxLoader.js"></script>
<script src="scripts/thirdparty/PxLoaderImage.js"></script>
<script src="scripts/thirdparty/PxLoaderSound.js"></script>
<script src="scripts/namespace.js"></script>
<script src="scripts/assets.js"></script>
<script src="scripts/soundController.js"></script>
<script src="scripts/bitmap.js"></script>
<script src="scripts/Maths.js"></script>
<script src="scripts/box2dUtil.js"></script>
<script src="scripts/dispatcher.js"></script>
<script src="scripts/transform.js"></script>
<script src="scripts/combine.js"></script>
<script src="scripts/entities.js"></script>
<script src="scripts/game.js"></script>
</body>
</html>