-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (52 loc) · 1.9 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
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Snake</title>
<script src="dist/bundle.js"></script>
<link rel="stylesheet" type="text/css" href="css/leaderboard.css">
<link rel="stylesheet" type="text/css" href="css/markers.css">
<link rel="stylesheet" type="text/css" href="css/controlls.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<header>
<div>
genetic-neural-snake
</div>
</header>
<div>
<div id="game-hud">
<div>
<div id="scores">
<div class="score-container" id="marker-round"></div>
<div class="score-container" id="marker-best-cur-round"></div>
<div class="score-container" id="marker-best-historical"></div>
</div>
</div>
<div>
<canvas id="canvas" width="600" height="400"></canvas>
</div>
<div>
<div id="controlls">
<div>
<input id="render-checkbox" type="checkbox" checked />
<label>Don't touch me!!!</label>
</div>
<div class="slider" id="slider-speed"></div>
<div class="slider" id="slider-steering"></div>
</div>
</div>
</div>
<div class="snake-lists">
<div id="snake-list-champions">
</div>
<div id="snake-list-children">
</div>
<div id="snake-list-random">
</div>
</div>
</div>
<a href="https://github.com/manupm87/genetic-neural-snake"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/52760788cde945287fbb584134c4cbc2bc36f904/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f77686974655f6666666666662e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_white_ffffff.png"></a>
</body>
</html>