-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (58 loc) · 2.17 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>balloon Popping</title>
<link rel="stylesheet" href="style.css">
<!-- jQuery CDN -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- jQuery if CDN not loaded -->
<script type="text/javascript">
window.jQuery || document.write('<script src="jQuery/jquery-2.1.4.min.js"><\/script>');
</script>
<!-- jQueryUI CDN-->
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css" type="text/css" media="all" />
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
</head>
<body><!--
--><div id="game">
<div id="invisibleDiv" class="invisibleOn"></div>
<div id="game-message">
<h2>Read the instructions first... once you're ready, press any key to start the game!</h2>
</div>
</div><!--
--><div id="arsenal">
<div class="arsenal arsenal-top">
<div class="arsenal-top-wrapper">
<div class="score">
<h1>Total Score<br/>
<span id="score">-</span>
</h1>
</div>
<div class="level">
<h1>Game Level<br/>
<span id="level">-</span>
</h1>
</div>
<div class="timer">
<h1>Timer<br/>
<span id="timer">
</span>
</h1>
</div>
</div>
</div>
<div class="arsenal arsenal-bottom">
<div class="arsenal-bottom-wrapper">
<h1>Instructions</h1>
<p>The game objective is to <span>pop all moving objects</span> —by clicking on them—before time elapses. Each balloon you pop earns you points, but each miss substracts points. Have fun!</p>
</div>
</div>
</div><!--
--><script src="app.js" charset="utf-8"></script>
<script src="high-score.js" charset="utf-8"></script>
<script src="utilityFunctions.js" charset="utf-8"></script>
<script src="ballonMove.js" charset="utf-8"></script>
<script src="background-objects.js" charset="utf-8"></script>
</body>
</html>