-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (38 loc) · 947 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
37
38
39
40
41
42
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Ludum Dare 31</title>
<script type="text/javascript" src="stats.js"></script>
<script type="text/javascript" src="requestAnimationFrame.js"></script>
<script type="text/javascript" src="pixi.dev.js"></script>
<script type="text/javascript" src="utils.js"></script>
<script type="text/javascript" src="game.js"></script>
<script type="text/javascript" src="phase.js"></script>
<script type="text/javascript" src="face.js"></script>
<script type="text/javascript" src="input.js"></script>
<script type="text/javascript" src="main.js"></script>
<style type="text/css">
html,body{
margin:0;
padding: 0;
background-color: #000;
}
canvas{
display: block;
position: absolute;
left: 0;
}
#game-holder{
background-color: pink;
position: absolute;
left: 0;
top: 0;
}
</style>
</head>
<body>
<div id="game-holder">
</div>
</body>
</html>