-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (43 loc) · 1.12 KB
/
Copy pathindex.html
File metadata and controls
44 lines (43 loc) · 1.12 KB
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
43
44
<html>
<head>
<title>Wan Fung Chui | Boxy Run</title>
<link href="https://fonts.googleapis.com/css?family=Playfair+Display:400,700" rel="stylesheet">
<script type="text/javascript" src="js/three.min.js"></script>
<script type="text/javascript" src="js/game.js"></script>
<link href="style.css" rel="stylesheet">
</head>
<body>
<div class="panel">
<div class="game-title">
<div class="title">boxy run</div>
<div class="byline">by <a target="_blank" href="https://wanfungchui.github.io/">wan fung chui</a></div>
</div>
<div class="stat">
<label>Score</label>
<p id="score">0</p>
</div>
<table id="controls">
<tr>
<td>Up:</td>
<td>Jump</td>
</tr>
<tr>
<td>Left:</td>
<td>Left lane switch</td>
</tr>
<tr>
<td>Right:</td>
<td>Right lane switch</td>
</tr>
<tr>
<td>p:</td>
<td>Pause</td>
</tr>
</table>
<table id="ranks"></table>
<div class="animate-flicker" id="variable-content">Press any button to begin</div>
</div>
<div id="world"></div>
</div>
</body>
</html>