-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtiming_belt_calcs.html
83 lines (64 loc) · 2.92 KB
/
timing_belt_calcs.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
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html>
<head>
<title>Timing Belt Calculators</title>
<meta content="width=device-width, minimum-scale=1, maximum-scale=1" name="viewport">
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
<script src="https://code.jquery.com/jquery-1.11.1.min.js"></script>
<script type="text/javascript">
$(document).bind("mobileinit", function () {
$.mobile.ajaxEnabled = false;
});
</script>
<script src="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
</head>
<body>
<!-- ###################
##### PAGE #####
################### -->
<div data-role="page" id="timing_belt_page">
<script type="text/javascript" src="script/mdj.math.library.js"></script>
<script type="text/javascript" src="script/belt_formulas.js"></script>
<script>
LoadNavPanel("#timing_belt_page");
$(".calculated_values").prop("readonly",true);
</script>
<div data-role="header" data-position="fixed" data-theme="b">
<a href="#navpanel" data-role="button" data-icon="bars" data-iconpos="notext">Navigation</a>
<h1>Timing Belt Center Calcs</h1>
</div> <!-- header -->
<div role="main" class="ui-content">
<div data-role="fieldcontain">
<label for="belt_size" class="select">Belt Size:</label>
<select name="belt_size" id="belt_size" class="user_values">
<option value="XL037">XL037</option>
<option value="L050">L050</option>
<option value="L075">L075</option>
<option value="L100">L100</option>
<option value="H100">H100</option>
<option value="H150">H150</option>
<option value="H200">H200</option>
<option value="H300">H300</option>
<option value="XH200">XH200</option>
<option value="XH300">XH300</option>
<option value="XH400">XH400</option>
</select>
<label for="pulley_1">Large Pulley #:</label>
<input class="user_values" type="number" data-clear-btn="true" id="pulley_1" name="pulley_1" value="32" maxlength="3" onkeydown="if (event.keyCode == 13) Calculate_circ()" />
<label for="pulley_2">Small Pulley #:</label>
<input class="user_values" type="number" data-clear-btn="true" id="pulley_2" name="pulley_2" value="22" maxlength="3" onkeydown="if (event.keyCode == 13) Calculate_circ()" />
<label for="center-dist">Center Distance (C):</label>
<input class="user_values" type="number" data-clear-btn="true" id="center-dist" name="center-dist" />
<label for="belt_pitches">Teeth:</label>
<input class="user_values" type="number" data-clear-btn="true" id="belt_pitches" name="belt_pitches" />
<label for="belt_length">Belt Length (in):</label>
<input class="user_values" type="number" data-clear-btn="true" id="belt_length" name="belt_length" />
</div> <!-- fieldcontain -->
</div> <!-- Content -->
<div data-role="footer" data-position="fixed" data-theme="b">
<h4></h4>
</div>
</div> <!-- Page -->
</body>
</html>