This repository has been archived by the owner on Oct 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (31 loc) · 1.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>A-maze ball | A mazy ball simulator</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="./css/style.css" rel="stylesheet">
</head>
<body>
<div class="ui">
<div class="uiscreen">
<h1>A-maze ball</h1>
<p>Maze ball is a small test to build a game with procedural maps and a little bit of physics.</p>
<p>If you visit this on a phone that supports device orientation api, you can use the tilt of your phone to get the ball through the maze into the goal. If you do not have a device ready that supports device orientation, you can use the Arrow Keys to navigate.</p>
<p>Currently only tested in chrome. If things don't work... sorry. You can file an <a href="https://github.com/tomheller/maze-ball/issues">issue over at github</a>, and I might get around to fixing it.</p>
<p>There will be a blog entry here, that explains more about how i built this.</p>
<p><small>PS: If there is no link yet, it means that I havent gotten around to write the post yet</small></p>
<button type="button">Start game</button>
<p>Have fun playing it - Tom Heller</p>
</div>
</div>
<div id="canvas" class="container"></div>
</body>
<script src="./js/vendor/matter.js"></script>
<script src="./js/random.js"></script>
<script src="./js/ball.js"></script>
<script src="./js/maze.js"></script>
<script src="./js/goal.js"></script>
<script src="./js/game.js"></script>
<script src="./js/main.js"></script>
</html>