-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (57 loc) · 2.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Chairs Chairs Chairs</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<main>
<section id="left-col">
<h1>Chairs Chairs Chairs</h1>
<header id="image-details" aria-label="Image Details">
<div id="image-titles">
<h2 id="image-title">No image uploaded</h2>
<h3 id="image-current-filename">Upload an image to begin</h3>
</div>
<nav id="image-nav" aria-label="Image Navigation">
<button type="button" id="image-previous" disabled>Previous</button>
<button type="button" id="image-next" disabled>Next</button>
</nav>
</header>
<section id="canvas-container" aria-label="main canvas">
<div id="canvas-container-inner">
<span id="canvas-empty-state">Upload an image to begin</span>
<canvas id="canvas-image" width="1000" height="1000"></canvas>
<canvas id="canvas-annotation" width="1000" height="1000"></canvas>
<canvas id="canvas-current-box" width="1000" height="1000"></canvas>
</div>
</section>
<section id="image-controls" aria-label="Image Controls">
<button type="button" id="image-delete" disabled>Delete Image</button>
<input type="file" id="image-upload-input" accept="image/*" />
<button type="button" id="image-upload-button">
Upload New Image
</button>
</section>
</section>
<section id="annotations" aria-labelledby="annotations-header">
<h2 id="annotations-header">
Annotations<span id="annotations-total-number"></span>
</h2>
<h4>Click on labels to change text</h4>
<ul id="annotations-list"></ul>
<button type="button" id="annotations-delete-all" disabled>
Clear All Annotations
</button>
</section>
<section id="gallery" aria-labelledby="gallery-header">
<h2 id="gallery-header">Gallery</h2>
<ul id="gallery-list"></ul>
</section>
</main>
<script src="index.js" type="module"></script>
</body>
</html>