-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbird.htm
31 lines (28 loc) · 901 Bytes
/
bird.htm
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./bird.css">
</head>
<body>
<div class="container">
<div class="sky">
</div>
<div class="bird swiper1"></div>
<div class="land"></div>
<div class="end">
游戏结束,您的总得分为:<span class="score"></span>
</div>
</div>
<p>回车键开始/暂停,空格键跳跃</p>
<script src="./scripts/uber.js"></script>
<script src="./scripts/sky.js"></script>
<script src="./scripts/land.js"></script>
<script src="./scripts/bird.js"></script>
<script src="./scripts/pipe.js"></script>
<script src="./scripts/game.js"></script>
</body>
</html>