-
Notifications
You must be signed in to change notification settings - Fork 180
/
index.html
41 lines (41 loc) · 1.2 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
<!DOCTYPE html>
<html>
<head>
<title>SC2K</title>
<style>
* {
margin: 0;
padding: 0;
}
html, body {
width: 100%;
height: 100%;
border: 0;
overflow: hidden;
display: block;
background-color: #371700;
}
#interfaceCanvas,
#scaledInterfaceCanvas,
#vectorCanvas,
#animationCanvas,
#primaryCanvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
</style>
<script src="js/game.js"></script>
<script src="js/graphics.js"></script>
<script src="js/ui.js"></script>
<script src="js/events.js"></script>
<script src="js/data.js"></script>
<script src="js/util.js"></script>
<script src="js/tiles.js"></script>
<script src="js/debug.js"></script>
<script src="js/import.js"></script>
</head>
<body onload="game.init();">
<canvas id="interfaceCanvas" style="z-index: 5;"></canvas>
<canvas id="scaledInterfaceCanvas" style="z-index: 4;"></canvas>
<canvas id="vectorCanvas" style="z-index: 3;"></canvas>
<canvas id="animationCanvas" style="z-index: 2;"></canvas>
<canvas id="primaryCanvas" style="z-index: 1;"></canvas>
</body>
</html>