-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
38 lines (38 loc) · 1.36 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Tetris</title>
<link rel='shortcut icon' type='image/x-icon' href='favicon.ico' />
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="site"></div>
<div class="start-restart">start</div>
<div id="info">
<label for="highest-score">历史最高得分:</label>
<div id="highest-score"></div>
<label for="score">得分:</label>
<div id="score">0</div>
<label for="level">等级:</label>
<div id="level">0</div>
<label for="next">下一个方块:</label>
<div id="next"></div>
<label for="control">操作:</label>
<div id="control">
<label for="up">上方向键:</label>
<div id="up">方块变形</div>
<label for="left">左方向键:</label>
<div id="left">方块向左</div>
<label for="right">右方向键:</label>
<div id="right">方块向右</div>
<label for="space">空格键:</label>
<div id="space">方块加速掉落</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>