-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplaneswar.html
42 lines (40 loc) · 1.47 KB
/
planeswar.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
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>飞机大战</title>
<link href="planeswar.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="planeswar.js"></script>
</head>
<body>
<div id="hidden"></div><!-- 隐藏框 -->
<div id="top"><!-- 顶部框 -->
<i class="iconfont">:<span id="score">0</span></i>
当前难度:<span id ="difficultbox">1</span>
</div>
<div id="warplace"><!-- 战场框 -->
<div id="overbox"></div><!-- 结束弹框 -->
<i class="iconfont planes"></i>
<i class="iconfont planes"></i>
<i class="iconfont planes"></i>
<i class="iconfont planes"></i>
<i class="iconfont planes"></i>
<i class="iconfont planes"></i>
<i class="iconfont planes"></i>
<i class="iconfont planes"></i>
<i class="iconfont planes"></i>
<i class="iconfont planes"></i>
<i class="iconfont planes"></i>
<i class="iconfont planes"></i>
<i class="iconfont planes"></i>
<i class="iconfont planes"></i>
<i class="iconfont planes"></i>
<i class="iconfont" id="person"></i>
</div>
<div id="footer"><!-- 底部框 -->重新开始
<button id="resetbtn"><i class="iconfont"></i></button>
<button id="stopbtn"><i class="iconfont"></i></button>
暂停/开始
</div>
</body>
</html>