51 lines
1.8 KiB
HTML
51 lines
1.8 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
|
||
|
<script src="analyser.js"></script>
|
||
|
<link rel="stylesheet" href="analyser.css" />
|
||
|
<title>Wiredraw Setup Analyser</title>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<div class="content">
|
||
|
<div class="header">
|
||
|
<p id="vanity">Taylor Courage's</p>
|
||
|
<h1>Setup Analyser</h1>
|
||
|
<p>Use this tool to visualize the setup of wiredraw machinery</p>
|
||
|
<p>─</p>
|
||
|
</div>
|
||
|
<div class="body" id="body">
|
||
|
<label for="die0">Start: </label>
|
||
|
<input type="text" id="die0" autocomplete="off" value="0.0" size="4" />
|
||
|
<input type="radio" name="units" id="metric" value="mm" checked tabindex=-1 />
|
||
|
<label for="metric">mm</label>
|
||
|
<input type="radio" name="units" id="inches" value="in" tabindex=-1 />
|
||
|
<label for="inches">in</label>
|
||
|
<p></p>
|
||
|
<table id="data">
|
||
|
</table>
|
||
|
<p></p>
|
||
|
<button name="Add Reduction" id="addReduction" onclick="addReduction()">Add</button>
|
||
|
<button name="Remove Reduction" id="removeReduction" onclick="removeReduction()">Remove</button>
|
||
|
<button name="Calculate" id="calculateButton" onclick="doMath()">Calculate!</button>
|
||
|
<script>addReduction()</script>
|
||
|
<script>addReduction()</script>
|
||
|
|
||
|
<p>─</p>
|
||
|
<p></p>
|
||
|
<table class="output" id="output">
|
||
|
</table>
|
||
|
<p style="font-size:60%">**Coming soon!</p>
|
||
|
<p> </p>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="footer" align="center">
|
||
|
<p> </p>
|
||
|
<p>© 2025 <a href="http://git.taylorcourage.net/Taylor">Taylor Courage</a></p>
|
||
|
</div>
|
||
|
</body>
|
||
|
|
||
|
</html>
|