-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
40 lines (35 loc) · 1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
<script src="js/box2d.js"></script>
<script src="js/helpers.js"></script>
<script src="js/game.js"></script>
<script src="js/base.js"></script>
<script src="js/debugDraw.js"></script>
<title>Bubble POP!</title>
<script type="text/javascript">
window.onload = function() {
using(Box2D, "b2.+")
init();
animate();
};
</script>
</head>
<body>
<div class="container">
<h1>Meet Bubble POP!</h1>
<br>
<div class="text-center">
<canvas id="canvas" style="cursor: pointer;" width="640" height="480" tabindex='1'></canvas>
</div>
<br>
<h3>Click out same colored groups<br>
Gain score<br>
Enjoy the physics<br> </h3>
<p class="text-muted text-right"><a href="https://github.com/mind1master">Made by Anton Kasyanov</a></p>
</div>
</body>
</html>