-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (52 loc) · 1.61 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Recce v0.1</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/gh/tofsjonas/sortable@latest/sortable.min.css" rel="stylesheet" />
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Recce v0.1</h1>
</header>
<main>
<section id="controls">
<label>
Search:
<input type="text" id="search" value=""></input>
</label>
<label>
Min. Confidence:
<input type="range" id="confidence" value="0" min="0" max="1" step="0.01"></input>
<span id="confidence-label">0</span>
</label>
<button id="show-features-table">Show/Hide Features Table</button>
</section>
<section id="output">
<div>
<table id="features-table" class="sortable">
<thead>
<tr>
<th>Text</th>
<th>Confidence</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<section id="image">
<img src="./1586 Aberdeen.jpg" alt="1586 Aberdeen">
<svg id="svg" xmlns="http://www.w3.org/2000/svg" width="1000" height="750" viewBox="0 0 1000 750">
</svg>
</section>
</section>
</main>
<script src="https://unpkg.com/@popperjs/core@2"></script>
<script src="https://unpkg.com/tippy.js@6"></script>
<script src="https://cdn.jsdelivr.net/gh/tofsjonas/sortable@latest/sortable.min.js"></script>
<script src="script.js" type="module"></script>
</body>
</html>