-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathindex.html
60 lines (53 loc) · 1.41 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
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Crossy Road</title>
<link rel="stylesheet" href="./style.css">
<link rel="icon" href="./favicon.ico">
<script src="https://kit.fontawesome.com/622afd0c30.js"></script>
</head>
<body>
<div id="counter">0</div>
<div id="controls">
<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>
<div class= "credits">
Made with <i class="fas fa-heart"></i> & 🐓
</div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/three.js/99/three.min.js'></script>
<script src="./script.js"></script>
</body>
</html>