-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path2048.html
More file actions
32 lines (29 loc) · 714 Bytes
/
Copy path2048.html
File metadata and controls
32 lines (29 loc) · 714 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"/>
<link rel="stylesheet" href="css/2048.css"/>
<script src="js/zepto_multiple.js"></script>
<script src="js/animation.js"></script>
<script src="js/2048.js"></script>
</head>
<body>
<p id="pid">Score:<span id="score"></span>
Top:<span id="top"></span>
</p>
<div id="gridPanel">
</div>
<div id="gameOver">
<div><!--背景div--></div>
<p><!--前景框-->
Game Over!<br>
Score:<span id="finalScore"></span><br>
<a class="button" onclick="game.start()">
Try again!
</a>
</p>
</div>
</body>
</html>