forked from cyandev/balance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (41 loc) · 1.6 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<title>3061 Switch Balance</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="switchContainer">
<img src="switch.png" id="switch">
<p id="robot1pos" class="pos">1</p>
<p id="robot2pos" class="pos">2</p>
<p id="robot3pos" class="pos">3</p>
</div>
<div id="grid">
<div id="robot1" class="robot">
<input type="number" placeholder="weight (lbs)" id="robot1weight">
<input type="range" min="-57" max="57" id="robot1xRange">
<input type="number" min="-57.12500" max="57.12500" id="robot1xNumber" placeholder="Pos (in)">
<p id="robot1xCalculated"></p>
</div>
<div id="robot2" class="robot">
<input type="number" placeholder="weight (lbs)" id="robot2weight">
<input type="range" min="-57" max="57" id="robot2xRange">
<input type="number" min="-57.12500" max="57.12500" id="robot2xNumber" placeholder="Pos (in)">
<p id="robot2xCalculated"></p>
</div>
<div id="robot3" class="robot">
<input type="number" placeholder="weight (lbs)" id="robot3weight">
<input type="range" min="-57" max="57" id="robot3xRange">
<input type="number" min="-57.12500" max="57.12500" id="robot3xNumber" placeholder="Pos (in)">
<p id="robot3xCalculated"></p>
</div>
</div>
<div id="output">
<p id="level">level: n/a</p>
</div>
<script src="script.js"></script>
</body>
</html>