-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (29 loc) · 1.15 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
<!DOCTYPE html>
<html lang="jp">
<head>
<meta charset="utf-8">
<title>Game Of Life</title>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1, user-scalable=0" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<link rel="apple-touch-icon" href="img/icon.png"/>
<style type="text/css">
body { margin:0; padding:0; background: #000; display: table-cell; vertical-align: middle; }
div#container { top: 0; left: 0; width: 100%; height: 100%; position: absolute; display: table; }
div.sub_container { display: table-cell; vertical-align: middle; }
canvas { display: block; margin: 0 auto; background: #fff; }
</style>
<script src="script.js"></script>
<script>
window.addEventListener('load', KGN.init, false);
</script>
</head>
<div id="container">
<div class="sub_container">
<canvas id="game_world">
JavaScriptがOFFになっている為起動できません。<br/>JavaScriptをONにして起動してください。
</canvas>
</div>
</div>
</body>
</html>