-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
35 lines (33 loc) · 823 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
<html>
<head>
<title>Bad Santa</title>
<script src="http://localhost:35729/livereload.js?snipver=1" type="text/javascript"></script>
<!-- bower:js -->
<script src="bower_components/jquery/dist/jquery.js"></script>
<script src="bower_components/phaser/build/phaser.js"></script>
<!-- endbower -->
<script src="/eureca.js"></script>
<script src="tmp/game.js" defer></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<style>
body {
cursor: url(assets/crosshair.png), default;
background: #000;
padding: 0px;
margin: 0px;
}
canvas {
margin: auto;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
</style>
</head>
<body>
</body>
</html>