-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (30 loc) · 1.03 KB
/
index.html
File metadata and controls
33 lines (30 loc) · 1.03 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="wrapContainer">
<select name="selectImage" id="selectImage"></select>
<div id="main">
<canvas id="canvas"></canvas>
<div id="floatingWindow" style="display: none;">
<canvas id="tileCanvas"></canvas>
</div>
<div id="controls">
<button id="changeView" title="Change View">◩</button>
<button id="regenerate" title="Regenerate">
<img src="svgs/refresh.svg" alt="regenerate">
</button>
<button id="save" title="Save">
<img src="svgs/save2.svg" alt="save">
</button>
</div>
</div>
</div>
<script type="module" src="main.js"></script>
</body>
</html>