-
Notifications
You must be signed in to change notification settings - Fork 0
/
materials.html
143 lines (106 loc) · 4.28 KB
/
materials.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Materials</title>
</head>
<body>
<div class="mainWrapper">
<!--Left hand Side-->
<div class="mainLeftWrapper">
<!--Sheet Start-->
<div class="sheetYield">
<h3>Sheet Yield</h3>
<!-- <div class="sheetYieldWrapper"> -->
<div class = contentWrapper>
<div class="column1">
<p>Sheet</p>
<p>Piece</p>
</div>
<div class="column2">
<input type="text" id="swidth" name="swidth" style="width:50px;">X</input><br>
<input type="text" id="pwidth" name="pwidth" style="width:50px;">X</input>
</div>
<div class="column3">
<input type="text" id="sheight" name="sheight" style="width:50px;"></input><br>
<input type="text" id="pheight" name="pheight" style="width:50px;"></input>
</div>
<div class="column4">
<button onclick="calcSheet()">Calculate</button> </br>
</div>
</div>
<h5>Sheet Quick Select</h5 >
<select id="sheetSelect" onchange="SheetQuickSelect.setDimentions()">
<option>Select a size</option>
<option>3000x2000</option>
<option>3000x1500</option>
<option>2440x1220</option>
<option>2000x1000</option>
</select>
<div class="sheetResults">
<p id="sheetPortion"></p>
<p id="sheetYield"></p>
</div>
</div>
<!--Sections Start-->
<div class="sections">
<h3>Section Yield</h3>
<!-- <div class="sectionsWrapper"> -->
<div class = contentWrapper>
<div class = sectColumn1>
<p>Section Length</p>
<p>Piece Length</p>
</div>
<div class = sectColumn2>
<input type ="text" id="secLength" name="secLength" style="width:50px;"></input><br>
<input type ="text" id="secPieceLength" name="secPieceLength" style = "width:50px"></input><br>
</div>
<div class = sectColumn3>
<button onclick = "calcSection()">Calculate</button><br>
<button onclick = "calcSectAdd()">Add</button></br>
</div>
</div>
<h5>Section Quick Select</h5 >
<select id="sectionSelect" onchange="sectQuickSelect()">
<option>Select a size</option>
<option>6000</option>
<option>5000</option>
<option>3000</option>
<option>2000</option>
<option>1000</option>
</select> <br>
<select id="secListBox" name="secListBox" size="6">
</select> </br>
<button onclick = "calcSectRemove()">Remove</button></br>
<button onclick = "calcSectClear()">Clear</button></br>
<p id="sectionResult"></p>
</div>
</div>
<!--Right hand Side-->
<div class="mainRightWrapper">
<div class="vinyl">
<h3>Vinyl/Roll Materials</h3>
<!-- <div class="vinylWrapper"> -->
<div class = contentWrapper>
<div class="vinylColumn1">
<p>Roll Width</p>
<p>Piece Size</p>
</div>
<div class="vinylColumn2">
<input type ="text" id="vinRollWidth" name="vinRollWidth" style="width:50px;"></input><br>
<input type ="text" id="vinPieceWidth" name="inPieceWidth" style = "width:50px">X</input> <input type ="text" id="vinPieceLength" name="vinPieceLength" style="width:50px;"></input><br>
</div>
<div class="vinylColumn3">
<button onclick = "vinylCalc()">Calculate</button></br>
<button onclick = "vinylRemove()" style="width:59.55px">Clear</button></br>
</div>
</div>
</div>
<p id="vinylResult"></p>
</div>
</div>
</body>
<script type = "text/javascript" src = "signcalc.js"></script>
</html>