-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (75 loc) · 1.95 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Replace Shapes</title>
</head>
<body>
<div>
<div class="button-container">
<div class="transparent-square-background">
<img id="image-preview" />
<span id="layer-name"></span>
<div id="info-container">
<span id="instruction-text">Cache empty</span>
<div id="loading-spinner" class="spinner-container hidden">
<span class="loading-text">Loading image</span>
<div class="spinner"></div>
</div>
</div>
</div>
<button
type="button"
id="copy"
data-appearance="primary"
title="Copy Shape"
>
Copy Shape
</button>
<button
type="button"
id="replace"
data-appearance="button"
title="Replace Selected"
>
Replace Selected
</button>
<button
type="button"
id="replace-and-adjust-size"
data-appearance="button"
title="Replace And Adjust Size"
>
Replace And Adjust Size
</button>
<button
type="button"
id="place-over"
data-appearance="button"
title="Place Over Selected"
>
Place Over Selected
</button>
<button
type="button"
id="place-under"
data-appearance="button"
title="Place Under Selected"
>
Place Under Selected
</button>
<button
type="button"
id="clear-cache"
data-appearance="button"
title="Clear Cache"
>
Clear Cache
</button>
</div>
<div id="notification-container"></div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>