-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
90 lines (72 loc) · 3.44 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="Santiago Revelo">
<meta name="description" content="Space Invader Clone - by: santiagorevelo - Developed with Phaser v2.4.6">
<!-- Mobile Stuff -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="msapplication-tap-highlight" content="no">
<!-- Chrome on Android -->
<meta name="mobile-web-app-capable" content="yes">
<meta name="application-name" content="Space Invasion">
<link rel="icon" sizes="192x192" href="assets/images/touch/chrome-touch-icon.png">
<!-- Safari on iOS -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="SPACE INVASION">
<link rel="apple-touch-icon" href="assets/images/touch/apple-touch-icon.png">
<!-- Windows 8 -->
<meta name="msapplication-TileImage" content="assets/images/touch/ms-touch-icon.png">
<meta name="msapplication-TileColor" content="#FFFFFF">
<meta name="theme-color" content="#000000">
<!--link rel='shortcut icon' type='image/x-icon' href='favicon.ico' /-->
<title>Space Invasion</title>
<!-- build:css css/bootstrap.min.css -->
<link rel="stylesheet" href="css/bootstrap.css">
<!-- /build -->
<!-- build:css css/main.min.css -->
<link rel="stylesheet" href="css/main.css">
<!-- /build -->
</head>
<body>
<!-- THE WORNG ORIENTATION WARNING -->
<div id="turn"></div>
<!-- THE GAME CANVAS -->
<div id="SpaceInvader-game" class="game"></div>
<!-- HTML NEEDED FOR THE IMPORTANT MESSAGE MODAL POPUP -->
<div class="modal fade" id="promptPlayerNameModal" tabindex="-1" role="dialog" aria-labelledby="promptPlayerNameModal-label" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title" id="promptPlayerNameModal-label">HIGHSCORE REGISTRATION</h4>
</div>
<div class="modal-body">
<h1>CONGRATULATIONS HEARTHLING</h1>
<p>TYPE YOUR NAME TO SIGN IN THE HALL OF FAME</p>
<input id="inputName" type="text" name="nickname" placeholder="Enter your name...">
</div>
<div class="modal-footer">
<button id="sendScoreButton" type="button" class="btn btn-default" data-dismiss="modal">SAVE</button>
</div>
</div>
</div>
</div>
<!-- END HTML NEEDED FOR THE IMPORTANT MESSAGE MODAL POPUP -->
<!-- build:remove -->
<script src="http://localhost:35729/livereload.js"></script>
<!-- /build -->
<!-- build:js src/phaser.min.js -->
<script src="node_modules/phaser/build/phaser.min.js"></script>
<!-- /build -->
<!-- build:js src/bundle.min.js -->
<script src="bundle.js"></script>
<!-- /build -->
<script src="src/plugins/jquery-1.12.3.min.js"></script>
<script src="src/plugins/bootstrap.js"></script>
<script src="src/plugins/firebase.js"></script>
<script src="src/components/firebaseStuff.js"></script>
</body>
</html>