-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (31 loc) · 863 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Game</title>
<meta charset="UTF-8">
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' />
<script type="text/javascript" src="./phaser.js"></script>
<script type="text/javascript" src="./invaders.js"></script>
<style type="text/css">
body{
font-family: "ChaseRegular", sans-serif;
background: black;
margin: 0;
padding: 0;
overflow: hidden;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
canvas{
margin: 0 auto;
padding: 0;
}
</style>
</head>
<body>
<div id="phaser-example">
</div>
</body>
</html>