-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (59 loc) · 2.26 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
69
70
71
72
73
<html>
<head>
<title>Nabokos</title>
<meta charset='utf-8'>
<link rel="stylesheet" href="css/game.css" />
</head>
<body>
<a href="https://github.com/cyclo/nabokos"><img style="position: absolute; top: 0; left: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_left_gray_6d6d6d.png" alt="Fork me on GitHub"></a>
<div id='container'>
<header>
<h1 id='game-title'>Nabokos 番</h1>
<h4>Move all the blocks onto platforms to complete the level</h4>
</header>
<div id='game'>
<canvas width='480' height='335' id='sokoban'></canvas>
<div id='menu'>
<h1 id='game-status'>Well done!</h1>
<div id='level-buttons'>
<a href='#' id='next-level' class='btn'>Next Level</a>
<a href='#' id='restart-level' class='btn'>Retry Level</a>
<a href='#' id='restart-game' class='btn'>Restart</a>
</div>
<hr />
<div id='highscores'>
<h2>Highscores</h2>
<table cellspacing=0>
<thead>
<tr>
<td>Level</td>
<td>Score</td>
</tr>
</thead>
<tbody>
<tr>
</tr>
</tbody>
</table>
</div>
</div>
<div class='counters'>
<span id='step-counter'>0 Steps</span>
<span id='level-counter'>Level 1</span>
</div>
</div><!-- /end game-->
<footer>
<hr />
<p>Created by <a href='http://www.eblundell.com'>Eddie Blundell</a>. Source available on <a href='https://github.com/Cyclo/nabokos'>github</a>.</p>
</footer>
</div><!-- /end container -->
<script type="text/javascript" src="lib/jquery.js"></script>
<script type="text/javascript" src="js/Sprite.js"></script>
<script type="text/javascript" src="js/Tile.js"></script>
<script type="text/javascript" src="js/Highscore.js"></script>
<script type="text/javascript" src="js/Level.js"></script>
<script type="text/javascript" src="js/Player.js"></script>
<script type="text/javascript" src="js/UI.js"></script>
<script type="text/javascript" src="js/Sokoban.js"></script>
</body>
</html>