-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (27 loc) · 1.3 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Fuzzy Seesaw</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<script src="js/libs/jquery-2.1.1.js"></script>
<script src="js/libs/d3.js"></script>
<script src="js/libs/fuzzy.js"></script>
</head>
<body>
<h1>Fuzzy Seesaw - WBM Projekt SS 2014 (Cziesla, Weigel)</h1>
<svg></svg>
<br />
<label><span>Seesaw Angle: </span><input id="seesawAngle" type="range" min="-45" max="45" step="1" value="0" /></label><br />
<span></span><span id="angle"></span><br /><br />
<label><span>Desired Ball Position: </span><input id="desiredBallPosition" type="range" min="-250" max="250" step="5" value="0"/></label><br />
<span></span><span id="desiredBallPositionDisplay"></span><br /><br />
<label><span>Add Gravity: </span><input id="gravity" type="checkbox" value="0" /></label><br /><br /><br />
<span>Ball Position:</span><span id="position"></span><br /><br />
<span>Speed: </span><span id="speed"></span><br /><br />
<span>Acceleration: </span><span id="acceleration"></span><br /><br />
<script src="js/main.js"></script>
</body>
</html>