-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
57 lines (57 loc) · 1.94 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html>
<head>
<title>Itmas</title>
<link rel="stylesheet" href="index.css">
<script src="bundle.js"></script>
</head>
<body>
<div id="content">
<div id="card">
<div id="controls">
<div id="top-left-panel">
<div id="buttons">
<button id="clear">Clear</button>
<button id="save">Save</button>
<button id="export">Export</button>
<input type="file" id="load"></input>
<label for="load">Load</label>
<button id="shape" title="Control + click to flood-fill">⬤</button>
</div>
<input type="range" min="2" max="10" value="5" id="brush" orient="vertical"></input>
</div>
<select id="examples">
<option disabled selected value>Examples</option>
<option value="truck">Truck</option>
<option value="witch">Witch</option>
<option value="skeleton">Skeleton</option>
<option value="cat">Cat</option>
<option value="frog">Frog</option>
</select>
<itmas-palette id="palette"></itmas-palette>
</div>
<div id="grid">
<itmas-cloth id="front-view">
<span slot="title">Front View</span>
</itmas-cloth>
<itmas-cloth id="side-view">
<span slot="title">Side View</span>
</itmas-cloth>
<itmas-cloth id="top-view">
<span slot="title">Top View</span>
</itmas-cloth>
<div id="three">
<canvas id="three-canvas"></canvas>
<span id="expand">⛶</span>
</div>
</div>
</div>
<div id="layers">
<itmas-layer layer="3"></itmas-layer>
<itmas-layer layer="2"></itmas-layer>
<itmas-layer layer="1"></itmas-layer>
<itmas-layer class="selected" layer="0"></itmas-layer>
</div>
</div>
</body>
</html>