-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoverlay.html
More file actions
34 lines (34 loc) · 985 Bytes
/
overlay.html
File metadata and controls
34 lines (34 loc) · 985 Bytes
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
<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>Overlay</title>
<link rel="stylesheet" href="/src/windows/overlay/overlay.css" />
</head>
<body>
<div data-tauri-drag-region></div>
<div id="toolbar">
<div id="size-input">
<span class="size-input-button" data-value="10">+</span>
<span id="size-value">100%</span>
<span class="size-input-button" data-value="-10">-</span>
</div>
<input
id="opacity-input"
type="range"
min="10"
max="100"
value="100"
step="1"
/>
<div id="titlebar-close">
<span>x</span>
</div>
</div>
<div id="contents">
<img id="main-image" />
</div>
<script type="module" src="/src/windows/overlay/overlay.js"></script>
</body>
</html>