-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (38 loc) · 1.1 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Spaceship</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<script type="text/javascript" src="js/phaser.js"></script>
<script type="text/javascript" src="js/Boot.js"></script>
<script type="text/javascript" src="js/Preload.js"></script>
<script type="text/javascript" src="js/MainMenu.js"></script>
<script type="text/javascript" src="js/Levels.js"></script>
<script type="text/javascript" src="js/Game.js"></script>
<style type="text/css">
body {
margin: 0;
background-color: #000;
}
#orientation {
margin: 0 auto;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url(images/orientation.jpg);
background-repeat: no-repeat;
background-position: center;
background-color: rgb(0, 0, 0);
z-index: 999;
display: none;
}
</style>
</head>
<body>
<div id="orientation"></div>
<script src="js/main.js"></script>
</body>
</html>