-
Notifications
You must be signed in to change notification settings - Fork 0
/
slidecalc.html
71 lines (43 loc) · 1.92 KB
/
slidecalc.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!doctype html>
<head>
<title> Slide Speed Calculator </title>
<link rel="stylesheet" type="text/css" href="css/speedcalc.css">
<script language="javascript" type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="js/speedcalc.js"></script>
<style> html{ overflow-x:hidden;}
</style>
</head>
<body>
<div id="header">
<div id="header2">
</div>
<div id="header3">
</div>
</div>
<!-- UI -->
<!--<div id="ScreenFrame">-->
<div id="Frame">
<h2> Low% Slide Speed Calculator </h2>
<form name="clock">
<div id="timeinput"> <!-- INPUT -->
<div id="headertext"> <span>Position 1</span> <span>Position 2</span> <span>Wait Duration</span> </div>
<input class="inpField" type="text" name="position1" size="10" placeholder="Position 1">
<input class="inpField" type="text" name="position2" size="10" placeholder="Position 2">
<input class="inpField" type="text" name="waitDuration" size="10" placeholder="Wait Duration">
</div>
<div id="Options">
<input class="opButton" type="button" onClick="addValues();" value="Subtract">
<input class="opButton" type="button" onClick="clearEntryFields();" value="Clear Entry Fields"><br/><br/>
<input class="opButton" type="button" onClick="resetValues();" value="Clear All Fields">
</div>
<div id="Result">
<div id="headertext"> <span>Base Speed</span> <span>Speed Per Minute</span> <span>Speed Per Hour</span> </div>
<input class="resultValue" type="text" name="baseSpeed" size="15" maxlength="15" value="" readonly>
<input class="resultValue" type="text" name="speedPerMinute" size="15" maxlength="15" value="" readonly>
<input class="resultValue" type="text" name="speedPerHour" size="15" maxlength="15" value="" readonly>
</div>
</form>
</div>
<!--</div>-->
</body>
</html>