-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (21 loc) · 805 Bytes
/
index.html
File metadata and controls
21 lines (21 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title> Jump </title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=false">
<link rel="stylesheet" href="style.css">
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/three.js/89/three.min.js"></script>
<script type="text/javascript" src="js/game.js"></script>
</head>
<body>
<div class="page startPage">
<button type="button" class="startBtn">开始游戏</button>
</div>
<div class="page restartPage">
<p>游戏得分:<span class="scoreNum"></span> </p>
<button type="button" class="restartBtn">重新开始</button>
</div>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>