-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
34 lines (34 loc) · 1.16 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">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>WeChat Jump a jump</title>
<link href="./index.css" rel="stylesheet">
</head>
<body>
<div id="jump_app">
<div>
<h1> 跳一跳 Web版 </h1>
<div>
<label> 难易程度: </label>
<select id="jump_select">
<option value="简单">简单</option>
<option value="中等">中等</option>
<option value="困难">困难</option>
</select>
</div>
<div>
<button id="jump_startGame" class="jump_gameBtn"> 开始游戏 </button>
<button id="jump_restartGame" class="jump_gameBtn"> 重新开始 </button>
</div>
</div>
</div>
<div id="jump_score">
<span>当前所得分数: </span>
<span id="jump_scoreTotal">0</span>
</div>
<script src="./index.ts"></script>
</body>
</html>