Update index.html

This commit is contained in:
Ravi Riley 2020-06-15 17:42:47 -07:00
parent 148edd5fa3
commit b91e37b074

View File

@ -8,21 +8,28 @@
<script src="js/binaryReader.js"></script> <script src="js/binaryReader.js"></script>
</head> </head>
<body> <body>
<p> <h1>STL to OpenSCAD File Converter</h1>
Convert STL files to OpenSCAD. Read more about it here: <p>Convert STL files to OpenSCAD. Read more about it here:
<a href='https://www.thingiverse.com/thing:1383325' target=_new>Thingiverse: STL to OpenSCAD converter</a> <a href="https://www.thingiverse.com/thing:1383325">Thingiverse: STL to OpenSCAD converter</a>
</p> </p>
<div><span id="error"></span></div>
<div><input type="file" id="files" name="file" accept=".stl"/></div> <div><span id="error"></span></div>
<button onclick="abortRead();">Cancel read</button> <input type="file" id="upload" name="file" accept=".stl">
<div id="progress_bar"> <label for="upload" class="button">Choose File</label>
<div class="percent">0%</div> <button id="cancel" class="button" onclick="abortRead();" style="display:none">Cancel</button>
</div>
<span id="conversion"></span> <div id="progress_bar">
<span id="result"></span> <div class="percent">0%</div>
<div> </div>
<a href="#" class="button">Download</a> <span id="conversion"></span>
</div> <span id="result"></span>
<script src="js/main.js"></script>
<div>
<a href="#" id="download" class="button" style="display: none">Download</a>
</div>
<footer>
<p>view it on GitHub</p>
</footer>
<script src="js/main.js"></script>
</body> </body>
</html> </html>