-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (32 loc) · 1.28 KB
/
Copy pathindex.html
File metadata and controls
32 lines (32 loc) · 1.28 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%232b6cb0' d='M2 14V2h1v11h11v1H2z'/%3E%3Cpath fill='none' stroke='%23e53e3e' stroke-width='1.4' d='M3 11c3 0 4-6 7-6'/%3E%3C/svg%3E" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PlotParser — Datasheet Plot Digitizer</title>
</head>
<body>
<div id="app">
<header id="toolbar"></header>
<main id="workspace">
<section id="stage-wrap">
<div id="stage">
<canvas id="stage-canvas"></canvas>
<svg id="stage-svg" xmlns="http://www.w3.org/2000/svg"></svg>
<canvas id="loupe" width="160" height="160" hidden></canvas>
<div id="drop-hint">
<div class="drop-hint-inner">
<strong>Drop, paste, or open a plot image</strong>
<span>PNG / JPG · or drop a <code>.json</code> project to resume</span>
</div>
</div>
</div>
<div id="statusbar"></div>
</section>
<aside id="sidebar"></aside>
</main>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>