-
Notifications
You must be signed in to change notification settings - Fork 0
/
SuperTower.html
69 lines (68 loc) · 2.08 KB
/
SuperTower.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Super Tower!</title>
<link rel="stylesheet" type="text/css" href="SuperTower.css" />
</head>
<body>
<section>
<div
id="canvasesdiv"
style="position: relative; width: 1054px; height: 606px"
>
<canvas
id="layerBackgroundImage"
style="z-index: 1"
height="576px"
width="1024"
>
This text is displayed if your browser does not support HTML5 Canvas.
</canvas>
<canvas id="layerStage" style="z-index: 2" height="576px" width="1024">
This text is displayed if your browser does not support HTML5 Canvas.
</canvas>
<canvas
id="layerEnemies"
style="z-index: 3"
height="576px"
width="1024"
>
This text is displayed if your browser does not support HTML5 Canvas.
</canvas>
<canvas
id="layerUIStatic"
style="z-index: 4"
height="576px"
width="1024"
>
This text is displayed if your browser does not support HTML5 Canvas.
</canvas>
<canvas
id="layerUIDynamic"
style="z-index: 5"
height="576px"
width="1024"
>
This text is displayed if your browser does not support HTML5 Canvas.
</canvas>
</div>
<script src="EnemyWaves.js"></script>
<script src="EnemySpawn.js"></script>
<script src="Enemies.js"></script>
<script src="EnemyList.js"></script>
<script src="EnemyDrawing.js"></script>
<script src="Enemy.js"></script>
<script src="Point.js"></script>
<script src="Path.js"></script>
<script src="Stage.js"></script>
<script src="StageList.js"></script>
<script src="Utilities.js"></script>
<script src="Background.js"></script>
<script src="SuperTower.js"></script>
<script>
SuperTower.init();
</script>
</section>
</body>
</html>