-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (35 loc) · 1.2 KB
/
index.html
File metadata and controls
37 lines (35 loc) · 1.2 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
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="/src/styles.css" />
<title>Tauri App</title>
<script type="module" src="/src/main.ts" defer></script>
</head>
<body onContextmenu="return false;">
<div class="image-select-button">
<button id="buttonOpenLeftSideImage" type="button">
Left side image
</button>
<button id="buttonOpenRightSideImage" type="button">
Right side image
</button>
</div>
<div id="imageViewer" class="image-viewer">
<span id="imageDivider" class="image-divider"></span>
<div id="leftArea">
<img id="leftSideImage" src="src/assets/sampleA.jpg" alt="" />
</div>
<div id="rightArea">
<img id="rightSideImage" src="src/assets/sampleB.jpg" alt="" />
</div>
</div>
<div id="contextmenu" class="context-menu">
<button id="optionSlide" type="button">Slide</button>
<button id="optionClick" type="button">Click</button>
<button id="optionZoom" type="button">Zoom in/out</button>
</div>
</div>
</body>
</html>