-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (29 loc) · 940 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Game-of-life</title>
</head>
<body>
<section class="control">
<!-- <div class="layer">
<span class="layer_close">×</span>
</div> -->
<div class="inputs">
<input type="text" name="x" placeholder="x" value="120">
<input type="text" name="y" placeholder="y" value="60">
<input type="text" name="celldWith" placeholder="celldWith" value="10">
<input type="text" name="liveCellNums" placeholder="liveCellNums" value="3000">
</div>
<div class="buts">
<span class="start_but">start</span>
<span class="reset_but">reset</span>
<span class="step_but">step</span>
</div>
</section>
<canvas id="canvas">
</canvas>
</body>
</html>