-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (54 loc) · 2.29 KB
/
index.html
File metadata and controls
69 lines (54 loc) · 2.29 KB
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
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Arcade Games</title>
<link rel="stylesheet" href="css/style.css" type="text/css">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link href='http://fonts.googleapis.com/css?family=Orbitron' rel='stylesheet' type='text/css'>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<script src="js/input.js" type="text/javascript"></script>
<script src="js/sprite.js" type="text/javascript"></script>
<script src="js/big-sprite.js" type="text/javascript"></script>
<script src="js/seamlessloop.js" type="text/javascript"></script>
<script src="js/base.js" type="text/javascript"></script>
<script src="js/galaga.js" type="text/javascript"></script>
<script src="js/spaceinvaders.js" type="text/javascript"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
</head>
<body>
<div id="game-over-overlay"></div>
<div id="game-over-handler">
<div id="game-over">
<h1>GAME OVER</h1>
<button id="play-again">Play Again</button>
</div>
<div id="score"></div>
<div id="lives"></div>
</div>
<!--
<div class="wrapper">
</div>
-->
<!-- Decoration -->
<h2 class="background-stuff" id="title">Space Invaders</h2>
<!-- Main Stuff -->
<canvas id="main-canvas" width="1000px" height='1000px'></canvas>
<canvas id="space-canvas" width='512px' height='480px'></canvas>
<!-- Loading Bar -->
<div class="progress">
<div class="progress-bar progress-bar-striped active" role="progressbar"
aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" style="width:0%" id='loading-bar'>
0%
</div>
</div>
<!-- Space Invaders -->
<!--<img src="img/space-invader-1.png" id="space-invader" class="pixel-image">-->
<input type="button" class="startbutton" value="Start Space
Invaders" id="space-start"/>
<!-- Galaga -->
<!--
<input type="button" class="startbutton" value = "Start Galaga" id="galaga-start"/>
-->
</body>
</html>