-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
29 lines (29 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
<!DOCTYPE html>
<html>
<head>
<title>Balljs</title>
<meta name="author" content="Nicolas Dutertry">
<link rel="stylesheet" type="text/css" href="css/balljs.css"/>
<link rel="icon" type="image/png" href="images/logo.png" />
<script src="js/jquery-1.7.1.min.js"></script>
<script src="js/jquery.mobile-1.4.5.min.js"></script>
<script data-main="js/balljs" src="js/require.js"></script>
</head>
<body>
<div id="toucharea"></div>
<img src="images/reload.png" id="reload" title="Reload"/>
<img src="images/nosound.png" id="sound" title="Toggle sound"/>
<div id="main">
<div id="header">
<span id="best"></span>
<span id="score"></span>
</div>
<canvas id='canvas-background'></canvas>
<canvas id='canvas-blocks'></canvas>
<canvas id='canvas-balls'></canvas>
</div>
<div id="help">Click, move down and release to shot</div>
<div id="game-over">GAME OVER</div>
<div id="about">balljs - <a href="https://github.com/nicolas-dutertry/balljs" target="_new">https://github.com/nicolas-dutertry/balljs</a></div>
</body>
</html>