-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
executable file
·54 lines (50 loc) · 1.86 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Conway's Game of Life demo (Jim Blackler)</title>
<!-- Copyright Jim Blackler 2014.
All enquiries [email protected]
Free software offered under the GNU GENERAL PUBLIC LICENSE v3
See COPYING -->
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div>
<span>
<a href="http://jimblackler.net/blog/?p=384">About</a>
</span>
<span id="speeds">
<a id="slow" href="#">Slow</a>
<a id="medium" href="#">Medium</a>
<a id="fast" href="#">Fast</a>
<a id="stop" href="#">Stop</a>
</span>
<span id="drawing">
<a id="clear" href="#">Clear</a>
<a id="randomize" href="#">Randomize</a></span>
<span id="shapes">
<a id="previous" href="#"><</a>
<canvas id="previewPic" width="24" height="24"></canvas>
<span id="shapeName">Very long shape name</span>
<a id="next" href="#">></a></span>
<span id="sizes">
<a href="index.html?width=40&height=40&size=18&auto=0">Small</a>
<a href="index.html?width=138&height=72&size=10&auto=0">Medium</a>
<a href="index.html?width=230&height=120&size=6&auto=0">Large</a>
<a href="index.html?width=731&height=421&size=2&auto=0">Extra large</a>
<a href="index.html?width=1471&height=821&size=1&auto=0">Epic</a>
</span>
<span id="modes">
<a href="#" id="switchMode">Switch mode</a>
</span>
<span id="fps"></span>
</div>
<div id="mainDiv"></div>
<script src="life_shapes/shapes.js" type="text/javascript"></script>
<script src="scripts/colors.js" type="text/javascript"></script>
<script src="scripts/gup.js" type="text/javascript"></script>
<script src="scripts/game.js" type="text/javascript"></script>
<script src="scripts/main.js" type="text/javascript"></script>
</body>
</html>