-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
52 lines (46 loc) · 1.46 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
<html>
<head>
<title>Bounce Game</title>
<link rel="stylesheet" type="text/css" href="css/styles.css">
</head>
<body>
<div id='instructions'>
How to play Bounce:
<br><br>
Use the arrow keys to move the ball and find the exit to the maze.
<br><br>
Control: a,d,s,w
</div>
<div id='help'>
Hold down the 'H' key for game instructions.
</div>
<div id='level'>
Level: 1
</div>
<div id='lives'>
Lives:
</div>
<div id='score'>
Score:
</div>
<div id="endgame">
<img id="gameover" src="img/gameover.jpg" style="width:100%;max-width:500px"/>
<button id="try">Try again</button>
<div id="totalscore">
Total Score:
</div>
</div>
<div id="volume">
<button id='mute_button'>
<img id="show_volume" src="./img/unmute.png">
<img id="show_mute" style="display:none" src="./img/mute.png">
</button>
</div>
<script src="js/Box2dWeb.min.js"></script>
<script src="js/Three.js"></script>
<script src="js/keyboard.js"></script>
<script src="js/jquery.js"></script>
<script src="js/maze.js"></script>
<script src="js/script.js"></script>
</body>
</html>