-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (27 loc) · 1.16 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0,maximum-scale=1.0, user-scalable=no">
<title>Chrome t-rex runner with neat algorithm - neural network</title>
<link rel="stylesheet" href="index.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
</head>
<body id="trex-container" class="offline">
<div class="header">
<div id="chart"></div>
<div id="status">
<p>generation<br><span id="generation">0</span></p>
<p>highest score<br><span id="highest-score">0</span></p>
</div>
</div>
</body>
<script src="./neat/utils.js"></script>
<script src="index.js"></script>
<script src="./neat.js"></script>
<script src="https://cdn.jsdelivr.net/npm/frappe-charts@1.2.4/dist/frappe-charts.min.iife.js"></script>
<script src="https://cdn.jsdelivr.net/npm/p5@1.6.0/lib/p5.min.js"></script>
<script src="./neat/constant.js"></script>
<script src="./neat/runner.js"></script>
<script src="./neat/main.js"></script>
</html>