-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
34 lines (31 loc) · 1.02 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Stymee's Iges Three v0.5</title>
</head>
<body>
<canvas id="webgl"></canvas>
<header>
<h1>Stymee's Iges Three v0.5</h1>
</header>
<nav>
<button id="btnFile" type="button" aria-label="Load File">
Load File
</button>
<input id="inputFile" type="file" accept=".iges,.igs" />
</nav>
<footer>
<span>|</span>
<span id="spanProgress">00%</span>
<progress id="barProgress" value="0" max="100"></progress>
<span>|</span>
<span id="spanMouse">m 1.000, 1.000</span>
<span>|</span>
<span id="spanHover"></span>
</footer>
<script type="module" src="/main.ts"></script>
</body>
</html>