-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (71 loc) · 3.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Minecraft Turtle</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- SEO -->
<meta name="application-name" content="Minecraft Turtle" />
<meta name="author" content="Kyle Amoroso" />
<meta name="description" content="Genetic algorithm for finding an optimal mining pattern" />
<meta name="keywords" content="minecraft,genetic algorithm,simulation,html5" />
<meta name="version" content="1.0" />
<meta property="og:title" content="Minecraft Turtle" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://kamoroso94.github.io/minecraft-turtle/" />
<meta property="og:image" content="https://kamoroso94.github.io/minecraft-turtle/images/splash.png" />
<meta property="og:description" content="Genetic algorithm for finding an optimal mining pattern" />
<!-- Favicons -->
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<link rel="icon" type="image/png" href="icons/favicon-16.png" />
<link rel="icon" type="image/png" href="icons/favicon-32.png" />
<link rel="icon" type="image/png" href="icons/favicon-64.png" />
<link rel="icon" type="image/png" href="icons/favicon-128.png" />
<!-- Bootstrap+JQuery -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous" />
<script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<!-- Custom -->
<link rel="stylesheet" href="style.css" />
<script src="main.js"></script>
</head>
<body>
<div class="container">
<h1>Minecraft Turtle</h1>
<p class="lead">Genetic algorithm for finding an optimal mining pattern</p>
<div id="simulation">
<canvas class="img-thumbnail" width="512" height="512"></canvas>
<div class="form-group btn-group">
<button type="button" class="btn" id="toggle">
<span class="glyphicon glyphicon-play"></span>
</button>
<button type="button" class="btn" id="restart">
<span class="glyphicon glyphicon-stop"></span>
</button>
</div>
</div>
<form id="parameters">
<div class="form-group">
<strong>Generation:</strong>
<span id="generation">N/A</span>
</div>
<div class="form-group">
<strong>Fitness Score:</strong>
<span id="fitness">N/A</span>
</div>
<div class="form-group">
<input type="checkbox" id="background" />
<label for="background">Enable background</label>
</div>
<div class="form-group">
<input type="checkbox" id="color" />
<label for="color">Enable color</label>
</div>
</form>
<footer>
<p class="small">Made by Kyle Amoroso in 2016.</p>
</footer>
</div>
</body>
</html>