forked from BrendanTimmons/Ballout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·58 lines (50 loc) · 2.13 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
<!DOCTYPE html>
<!--[if lt IE 9]><html class="ie"><![endif]-->
<!--[if gte IE 9]><!--><html><!--<![endif]-->
<head>
<title>Ballout</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link href='https://fonts.googleapis.com/css?family=Orbitron:900,500' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="css/style.css"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="js/phaser.min.js"></script>
<script src="js/helpers.js"></script>
<script src="js/boot.js"></script>
<script src="js/load.js"></script>
<script src="js/menu.js"></script>
<script src="js/play.js"></script>
<script src="js/complete.js"></script>
<script src="js/game.js"></script>
</head>
<body>
<div class="container">
<div style="margin-top:20px">
<label>Name: <input id="name" type="text" value="Player"></label>
<div>
<h2>High Scores</h2>
<ol id="game-scores"></ol>
</div>
</div>
<div id="game-canvas"></div>
<div class="game-info">
<h1>Ballout</h1>
<h2>Controls</h2>
<ul>
<li><strong>Move Player:</strong> Left / Right</li>
<li><strong>Speed Boost:</strong> Shift</li>
<li><strong>Pause:</strong> Space</li>
<li><strong>Quit:</strong> Esc</li>
</ul>
<h2>Gameplay</h2>
<ul>
<li>Destroy the blocks without missing the ball.</li>
<li>Move your ship to deflect the ball.</li>
<li>The ball speeds up every time it hits an object.</li>
<li>Increase your score by killing blocks (20 points) and increase your combo multiplier by 1 for every block you hit in a row. When the ball hits the player ship the combo multiplier is reset.</li>
</ul>
<span>♫ Music: <a href="http://trash80.com/" target="_blank">Trash80</a></span>
</div>
</div>
</body>
</html>