-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (26 loc) · 886 Bytes
/
Copy pathindex.html
File metadata and controls
32 lines (26 loc) · 886 Bytes
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
<! doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Bart Invaders</title>
<link rel="stylesheet" href="css/style.css">
<script src="js/jquery-1.8.3.min.js"></script>
<script src="js/easeljs-0.5.0.min.js"></script>
<script src="js/preloadjs-0.2.0.min.js"></script>
<script src="js/soundjs-0.3.0.min.js"></script>
<script src="js/tweenjs-0.3.0.min.js"></script>
<script src="js/game.js"></script>
</head>
<body onload="init();">
<span id='load'></span><br/>
<canvas id="canvas" width="900" height="500">
</canvas>
<br/>
<br/>
Move your mouse to play.<br/>
Click to shoot.<br/>
Press space or esc to Pause.<br/>
Make sure to kill all the enemies before the time runs out.<br/>
<br/>Best played in <a href="http://www.google.com/chrome/">Google Chrome</a> or <a href="http://www.apple.com/safari/">Safari</a>
</body>
</html>