-
Notifications
You must be signed in to change notification settings - Fork 30
/
index.src.html
54 lines (48 loc) · 2.65 KB
/
index.src.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
<!DOCTYPE html5>
<html>
<head>
<meta charset="utf-8">
<title>bubbles games by franz enzenhofer</title>
<link rel="stylesheet" href="css/main.css">
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-34880400-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<center><div id="gamearea">
</div></center>
<script src="scripts/jquery.min.js"></script>
<script src="scripts/jquery.hotkeys.js"></script>
<script src="scripts/requestanimationframe.js"></script>
<!--<script> window.requestAnimFrame = (function(){
return window.requestAnimationFrame ||
window.webkitRequestAnimationFrame ||
window.mozRequestAnimationFrame ||
window.oRequestAnimationFrame ||
window.msRequestAnimationFrame ||
function( callback ){
window.setTimeout(callback, 1000 / 60);
};
})();</script>-->
<!--<script src="js/lib/init.js" coffee="js/src/init.coffee" min="__REMOVE__"></script>
<script src="js/lib/InGameObjects.js" coffee="js/src/InGameObjects.coffee" min="__REMOVE__"></script>
<script src="js/lib/Player.js" coffee="js/src/Player.coffee" min="__REMOVE__"></script>
<script src="js/lib/Explosion.js" coffee="js/src/Explosion.coffee" min="__REMOVE__"></script>
<script src="js/lib/Bullet.js" coffee="js/src/Bullet.coffee" min="__REMOVE__"></script>
<script src="js/lib/Enemy.js" coffee="js/src/Enemy.coffee" min="__REMOVE__"></script>
<script src="js/lib/runtime.js" coffee="js/src/runtime.coffee" min="__REMOVE__"></script>
<script src="js/lib/helper.js" coffee="js/src/helper.coffee" min="__REMOVE__"></script>
<script src="js/lib/start.js" coffee="js/src/start.coffee" min="__REMOVE__"></script>
<script src="" min="bubbles.js" ></script>-->
<script src="./bubbles.js"></script>
<div id="intro"><center><kbd class="arrow">◀</kbd> <kbd class="arrow">▲</kbd> <kbd class="arrow">▼</kbd > <kbd class="arrow" >▶</kbd> and <kbd> Space </kbd></center></div><script>window.setTimeout(function(){document.getElementById('intro').style.display='none'}, 2500)</script>
<a href="https://github.com/franzenzenhofer/bubbles"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub"></a>
</body>
</html>