-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (20 loc) · 789 Bytes
/
index.html
File metadata and controls
24 lines (20 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
<title>Elevator Simulator</title>
</head>
<body style="margin: 0px;">
<canvas id="canvas" width="100" height="100">
Your browser does not support canvas. You suck.
</canvas>
<input id="slider" type="range" min="1" max="500" value="50" oninput="looper.setSpeedFactor(this.value)" onchange="looper.setSpeedFactor(this.value)" style="position: absolute; top: 30px; left: 10px;" />
<script src="index.js"></script>
<script src="renderer.js"></script>
<script src="data_generator.js"></script>
<script src="loop.js"></script>
<script src="dumb_logic.js"></script>
<script src="random_logic.js"></script>
<script src="smart_logic.js"></script>
<script src="simple_logic.js"></script>
</body>
</html>