-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (80 loc) · 2.03 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>ライフゲームつくってみた</title>
<style>
.clearfix:after {
content: ".";
display: block;
height: 0;
font-size: 0;
clear: both;
visibility: hidden;
}
.clearfix {
display: inline-block;
}
/* Hides from IE Mac */
* html .clearfix {
height: 1%;
}
.clearfix {
display: block;
}
canvas#field {
border: 1px solid black;
float: left;
margin: 0 auto;
}
div#info {
float: left;
margin: 10px;
}
</style>
<script src="jquery-1.8.3.min.js"></script>
</head>
<body>
<div class="clearfix">
<canvas id="field">
コンテンツを表示するにはcanvasタグをサポートしたブラウザでご覧ください。
</canvas>
<div id="info">
<p>
個体数:<span id="live_num"></span>
</p>
</div>
</div>
<div>
<div id="setting">
スピード:
<input id="speed" type="text" value="100">
(1〜10)
</div>
<div id="controller">
<button id="start">
スタート
</button>
<button id="stop" disabled>
一時停止
</button>
<button id="rand">
ランダム配置
</button>
<button id="reset" disabled>
リセット
</button>
<button id="save" disabled>
localStrageに保存
</button>
</div>
<div>
第<span id="generation">0</span>世代
</div>
</div>
<!--
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
-->
<script src="main.js"></script>
</body>
</html>