-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (38 loc) · 957 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
43
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Drawing App</title>
<style>
body {
margin: 0;
padding: 0;
background-color: #000000;
}
canvas {
margin:0 auto;
}
#turn{
width:100%;
height:100%;
position:fixed;
top:0px;
left:0px;
background-color:#2e85ed;
/*background-image:url('assets/atlas/load/rotate.png');*/
background-repeat:no-repeat;
background-position: center center;
display:none;
}
</style>
<script src="js_lib/jquery-3.1.1.min.js"></script>
</head>
<body>
<div id = "turn"></div>
<script src="js_lib/phaser.js"></script>
<script src="js_lib/jquery-3.1.1.min.js"></script>
<script src="js_lib/phaser-nineslice.js"></script>
<script src="js_lib/phaser-spine.js"></script>
<script src="js/Game.js"></script>
</body>
</html>