-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (46 loc) · 1.31 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<html>
<head>
<title>jaja</title>
<!--<script src="kinetic-v4.3.3.min.js"></script>-->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="resources/js/lib/easeljs-0.6.0.min.js"></script>
<script src="resources/js/UI.js"></script>
<script src="resources/js/Sprites.js"></script>
<script src="resources/js/Map.js"></script>
<script src="resources/js/Player.js"></script>
<script src="resources/js/Enemy.js"></script>
<script src="resources/js/Movement.js"></script>
<script src="resources/js/Mouse.js"></script>
<script src="resources/js/Combat.js"></script>
<script src="resources/js/Powerup.js"></script>
<script src="resources/js/Main.js"></script>
<style>
* {
margin: 0;
padding: 0;
}
#htmlBlock, .highscoreList {
z-index: 4;
position: absolute;
top: 0px;
left: 0px;
width: 1200px;
text-align: center;
height: 600px;
display: none;
}
.highscoreList {
background: #fff;
}
</style>
</head>
<body>
<div id="preloader">laden</div>
<canvas id="test" width="1200" height="600" style="z-index:1; float: left"></canvas>
<!-- <div id="htmlBlock" style=""></div>
<div class="highscoreList" style=""></div>
<div class="countDown">
<span class="count"></div>
</div> -->
</body>
</html>