-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (34 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>moe-jump</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="user-scalable=no, maximum-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="./dist/style.css">
</head>
<body>
<div class="bg">
<canvas id="moe-background" width="900px" height="360px"></canvas>
<div id="bg-floor">
<canvas id="moe-floor" width="1200px" height="250px"></canvas>
</div>
<canvas id="moe-stage" width="900px" height="360px"></canvas>
<div class="progress">
<div class="fullwidth">
<span class="expand"></span>
</div>
</div>
</div>
<div class="ctrl-con">
<p>press the Space to start game</p>
<!-- <button id="restart">Restart</button> -->
</div>
<!-- <script src="lib/pixi.js"></script> -->
<script src="lib/easeljs-NEXT.min.js"></script>
<!-- <script src="lib/easeljs-0.8.2.min.js"></script> -->
<script src="lib/preloadjs-0.6.2.min.js"></script>
<script src="lib/tweenjs-NEXT.min.js"></script>
<script src="dist/main.js"></script>
</body>
</html>