-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (43 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Visual Parking Lot</title>
<link rel="stylesheet" href="styles.css" />
<link rel="stylesheet" href="anims.css" title="anims" />
</head>
<body>
<div id="gui">
<input id="show-spaces-button" type="button" value="Show Spaces Status"></input>
<input id="show-intersections-button" type="button" value="Show Intersection Areas"></input>
<input id="show-paths-button" type="button" value="Show Path Lines"></input>
<p class="infotext">Click on a car to see more about what where it's trying to go.</p>
</div>
<div id="wrapper">
<div id="parking-lot">
<div id="lot-overlay">
<div id="spaces"></div>
<div id="intersections"></div>
</div>
</div>
<footer>
<div>
<dl id="stats-wrapper">
<dt>Cars which have entered the lot: </dt>
<dd id="car-counter">0</dd>
<dt>Cars currently parked: </dt>
<dd id="parked-counter">0</dd>
<dt>Cars which have left the lot: </dt>
<dd id="left-counter">0</dd>
</dl>
</div>
<div>
<a href="./docs/index.html">Check out the docs for this simulation.</a>
</div>
</footer>
</div>
<script src="scripts/loop.mjs" type="module"></script>
</body>
</html>