-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (51 loc) · 1.71 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
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html>
<head>
<title>Roller Splat Game (HTML5 Canvas)</title>
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
<link rel="stylesheet" href="./css/style.css">
<script src="./js/levels-data.js"></script>
<script src="./js/Vector2.js"></script>
<script src="./js/Ball.js"></script>
<script src="./js/Tile.js"></script>
<script src="./js/WallTile.js"></script>
<script src="./js/RoadTile.js"></script>
<script src="./js/Level.js"></script>
<script src="./js/Game.js"></script>
<script src="./js/main.js" defer></script>
</head>
<body>
<div class="container">
<div class="level-info">
Level <span class="level-number">0</span>
</div>
<div class="top-icons">
<input class="icon dark-theme-toggle" type="checkbox">
<input class="icon ui-keys-toggle" type="checkbox" checked>
<button class="icon reset-btn"></button>
</div>
<div class="level">
<div class="ball">
<div class="circle"></div>
</div>
<!-- <div class="tile wall-tile"></div> -->
<!-- <div class="tile road-tile"></div> -->
<!-- <div class="tile road-tile painted"></div> -->
</div>
<div class="keys">
<div class="row row-top">
<button class="btn btn-up" id="ArrowUp"></button>
</div>
<div class="row row-bottom">
<button class="btn btn-left" id="ArrowLeft"></button>
<button class="btn btn-down" id="ArrowDown"></button>
<button class="btn btn-right" id="ArrowRight"></button>
</div>
</div>
<div class="credits">
<b>Developed by: <a target="_blank" href="https://github.com/herbou/RollerSplatGame_HTML">Hamza Herbou</a></b>
</div>
<div class="fade"></div>
</div>
</body>
</html>