-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·60 lines (56 loc) · 2.01 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<link rel="stylesheet" type="text/css" href="css/style.css"></link>
<script src="js/loadimg.js"></script>
<script src="js/slider.js"></script>
<script src="js/images.js"></script>
<script src="js/appconstants.js"></script>
<script src="js/soundpool.js"></script>
<script src="js/sounds.js"></script>
<script src="js/keysDown.js"></script>
<script src="js/energy.js"></script>
<script src="js/sprite.js"></script>
<script src="js/entity.js"></script>
<script src="js/circle.js"></script>
<script src="js/player.js"></script>
<script src="js/entities.js"></script>
<script src="js/bullet.js"></script>
<script src="js/addnewbubble.js"></script>
<script src="js/updatestate.js"></script>
<script src="js/soundicon.js"></script>
<script src="js/draw.js"></script>
<script src="js/game.js"></script>
<script src="js/bubble.js"></script>
<script src="js/vanish.js"></script>
<body onload="load()">
<div class="main">
<canvas id="mainCanvas"></canvas>
<div class="start">
<div class="title">Bubble Survivor</div>
<input type="button" id="startbtn" value="Start"/>
<div class='rulesLink'>
Click here for instructions
</div>
</div>
<div class="finish">
<div class="finishTxt">You lose</div>
<div class="totalPoints"></div>
<input type="button" id="restartbtn" value="Start new game"/>
</div>
<div class="rules">
Goal for this game is to collect as much points as possible until energy is gone.
</p>
Good bubbles(green) gives you energy and evil bubbles(red) take away your energy and it all depend of their size.
</p>
You can see your energy on the left side.
</p>
Be careful of the black hole's gravitational force.
</p>
<input type="button" id="closeRulesBtn" value="Close"/>
</div>
</div>
<input class="slider" type="range" orient="vertical" min="0" max="1" step="0.05" value="0.5"/>
</body>
</html>