-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
53 lines (49 loc) · 1.27 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Crossy Road</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<!-- partial:index.partial.html -->
<div id="counter">0</div>
<div id="controlls">
<div>
<button id="forward">
<svg width="30" height="30" viewBox="0 0 10 10">
<g transform="rotate(0, 5,5)">
<path d="M5,4 L7,6 L3,6 L5,4" />
</g>
</svg>
</button>
<button id="left">
<svg width="30" height="30" viewBox="0 0 10 10">
<g transform="rotate(-90, 5,5)">
<path d="M5,4 L7,6 L3,6 L5,4" />
</g>
</svg>
</button>
<button id="backward">
<svg width="30" height="30" viewBox="0 0 10 10">
<g transform="rotate(180, 5,5)">
<path d="M5,4 L7,6 L3,6 L5,4" />
</g>
</svg>
</button>
<button id="right">
<svg width="30" height="30" viewBox="0 0 10 10">
<g transform="rotate(90, 5,5)">
<path d="M5,4 L7,6 L3,6 L5,4" />
</g>
</svg>
</button>
</div>
</div>
<div id="end">
<button id="retry">Retry</button>
</div>
<!-- partial -->
<script src='https://cdnjs.cloudflare.com/ajax/libs/three.js/99/three.min.js'></script><script src="./script.js"></script>
</body>
</html>