-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (51 loc) · 1.96 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
<!DOCTYPE html>
<html>
<meta charset="utf-8"/>
<head>
<title>Conway.js - Conway's Game of Life</title>
</head>
<body>
<div class="jumbotron text-center">
<h4>Conway.js - Conway's Game Of Life in JavaScript/HTML5</h4>
<div class="grid-dimension-select">
Width
<select id="width-select">
<option value="10">10</option>
<option value="20" selected="selected">20</option>
<option value="30">30</option>
<option value="40">40</option>
<option value="50">50</option>
</select>
Height
<select id="height-select">
<option value="10">10</option>
<option value="20" selected="selected">20</option>
<option value="30">30</option>
</select>
<button id="start-simulate" class="btn btn-default">Simulate!</button>
<button id="stop-simulate" class="btn btn-default">Stop!</button>
<button id="clear-simulate" class="btn btn-default">Clear!</button>
Alive <input id="colour-alive" value="#008000" type="color"/>
Dead <input id="colour-dead" value="#ff0000" type="color"/>
</div>
</div>
<div class="container">
<canvas id="conway-canvas" width="400" height="400"\>
</div>
</body>
<footer class="jumbotron text-center">
<a href="https://github.com/dillanmann/Conway.js">source</a>
<br>
<a href="https://github.com/dillanmann/Conway.js/blob/gh-pages/README.md">instructions</a>
<br>
<a href="http://www.dillanmann.co.uk">developed by Dillan Mann</a>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script src="./scripts/buffer.js"></script>
<script src="./scripts/utils.js"></script>
<script src="./scripts/tile.js"></script>
<script src="./scripts/game.js"></script>
<link rel="stylesheet" type="text/css" href="./styles/site.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
</html>