forked from alexslade/bubbles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (27 loc) · 1005 Bytes
/
index.html
File metadata and controls
27 lines (27 loc) · 1005 Bytes
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
<!DOCTYPE html5>
<html>
<head>
<title>bubbles games by franz enzenhofer</title>
<style>
canvas {border: 1px solid black}
</style>
</head>
<body>
<center><div id="gamearea">
</div></center>
<script src="scripts/jquery.min.js"></script>
<script src="scripts/jquery.hotkeys.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="./bubbles.js"></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>