-
Notifications
You must be signed in to change notification settings - Fork 0
/
2048.html
30 lines (27 loc) · 845 Bytes
/
2048.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, ">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/2048.min.css">
<title>2048</title>
</head>
<body>
<div class="container">
<h1>2048</h1>
<header>
<div class="left" id="restartBtn">
重新开始
</div>
<div class="right">
<span>成绩 <input type="text" class="score curScore" value="0" disabled></span>
<span>最好成绩 <input type="text" class="score bestScore" value="0" disabled></span>
</div>
</header>
<div class="table"></div>
</div>
<script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.min.js" charset="utf-8"></script>
<script src="js/2048.min.js" charset="utf-8"></script>
</body>
</html>