-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (67 loc) · 2.86 KB
/
index.html
File metadata and controls
81 lines (67 loc) · 2.86 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
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!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>Image Comparer | Chill31</title>
<meta name="description" content="Compare images from your device easily with this website">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.3/font/bootstrap-icons.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1 class="title">Image Comparer</h1>
<p class="brief">Upload images from your device to compare them. Horizontal and Vertical mode supported.</p>
</header>
<section class="horizontal" id="horizontal-custom">
<h2 class="subtitle">Horizontal</h2>
<div class="file-upload">
<div class="horizontal-file-upload-select file-upload-select">
<div class="file-select-button" >Choose 2 files</div>
<div class="file-select-name">No files chosen...</div>
<input type="file" multiple name="horizontal-file-upload-input" id="horizontal-file-upload-input">
</div>
</div>
<div class="picture-mode-wrapper">
<label for="hz-picture-mode-checkbox">Picture mode?</label>
<input type="checkbox" name="hz-picture-mode-checkbox" id="hz-picture-mode-checkbox">
</div>
<section class="hz-user user">
<img src="/images/gradient1.png" alt="first horizontal image" class="img first-hz-image">
<img src="/images/gradient2.png" alt="second horizontal image" class="img second-hz-image">
<span class="divider hz-divider">
<div class="circle">
<div class="left-triangle"></div>
<div class="right-triangle"></div>
</div>
</span>
</section>
</section>
<section class="vertical" id="vertical-custom">
<h2 class="subtitle">Vertical</h2>
<div class="file-upload">
<div class="vertical-file-upload-select file-upload-select">
<div class="file-select-button" >Choose 2 files</div>
<div class="file-select-name">No files chosen...</div>
<input type="file" multiple name="vertical-file-upload-input" id="vertical-file-upload-input">
</div>
</div>
<div class="picture-mode-wrapper">
<label for="vt-picture-mode-checkbox">Picture mode?</label>
<input type="checkbox" name="vt-picture-mode-checkbox" id="vt-picture-mode-checkbox">
</div>
<section class="vt-user user">
<img src="/images/gradient1.png" alt="first vertical image" class="img first-vt-image">
<img src="/images/gradient2.png" alt="second vertical image" class="img second-vt-image">
<span class="divider vt-divider">
<div class="circle">
<div class="left-triangle"></div>
<div class="right-triangle"></div>
</div>
</span>
</section>
</section>
<script src="script.js"></script>
</body>
</html>