-
Notifications
You must be signed in to change notification settings - Fork 0
/
sheetyield.html
61 lines (47 loc) · 1.91 KB
/
sheetyield.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
<!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>Sheet</title>
</head>
<body>
<!--Sheet Start-->
<div class="sheetYield">
<h3>Sheet Yield</h3>
<p class="description">Enter size of sheet and the piece required to get proportion of sheet as a decimal and yield</p>
<!-- <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 class="sheetSelectTitle">Sheet Quick Select</h5 >
<select id="sheetSelect" class="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>
</body>
<script type = "text/javascript" src = "signcalc.js"></script>
</html>