-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (31 loc) · 1.23 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
<!DOCTYPE html>
<html>
<head>
<title> Path </title>
<link rel="stylesheet" href="style.css" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
</head>
<body>
<div style="position: absolute; left: 50%; bottom: 12px; z-index: 1">
<div style="position: relative; left: -50%">
<button onclick="restart()" class="buttonRestart"> Restart </button>
</div>
</div>
<div style="position: absolute; left: 50%; top: 30px; z-index: 1">
<div style="position: relative; left: -50%">
<div style="font-size: 20px">
Is Possible: <span id="isPossible" style="font-weight: bold"> ? </span>
</div>
</div>
</div>
<script src="lib/p5.min.js"> </script>
<script src="lib/dat.gui.min.js"> </script>
<script src="lib/stats.min.js"> </script>
<script src="lib/gif.js"> </script>
<script src="src/stats.js"> </script>
<script src="src/gif.js"> </script>
<script src="src/gui.js"> </script>
<script src="src/index.js"> </script>
<script src="src/setup.js"> </script>
</body>
</html>