-
Notifications
You must be signed in to change notification settings - Fork 0
/
game.html
48 lines (39 loc) · 1.39 KB
/
game.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
<!DOCTYPE html>
<html>
<head>
<title>Less is more</title>
<script data-main="js/main-built" src="js/require.js"></script>
<!--<script data-main="js/game/main" src="js/require.js"></script>-->
<!-- For debug only! -->
<!--<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>-->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-10955279-6']);
_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>
<style type="text/css" media="screen">
body{
background-color: #222;
}
*{
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
</style>
</head>
<body>
<canvas style="background-color:#fff;" id='map_canvas'></canvas>
<canvas style=";" id='game_canvas'></canvas>
<canvas style=";" id='debug_canvas'></canvas>
<canvas style=";" id='info_canvas'></canvas>
</body>
</html>