-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
135 lines (117 loc) · 2.85 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Image Diff</title>
<style>
html, body {
background: #202124;
color: #eee;
font-family: sans-serif;
height: 100%;
display: flex;
width: 100%;
padding: 0;
margin: 0;
flex-direction: column;
}
header {
flex-grow: 0;
padding: 10px;
display: flex;
font-weight: bold;
}
.controls > * {
flex-grow: 1;
width: 33%;
text-align: center;
}
.controls .drop {
border: 2px dashed rgba(255, 255, 255, 0.2);
padding: 20px;
border-radius: 20px;
line-height: 2;
}
.content {
flex-grow: 2;
padding: 10px;
display: flex;
align-items: center;
}
.content.loading {
background-image: url('./third-party/loading.svg');
background-repeat: no-repeat;
background-position: center;
background-size: 20vh;
}
.inputs [type=number] {
width: 4em;
}
.content img {
max-width: 100%;
max-height: 100%;
margin: auto;
}
footer {
flex-grow: 0;
height: 1em;
padding: 0.5em 0;
background: rgba(255, 255, 255, 0.1);
display: flex;
justify-content: center;
}
footer a {
color: currentColor;
display: flex;
align-items: center;
text-decoration: none;
}
footer a i.material-icons {
font-size: 1em;
}
</style>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body>
<header class="controls">
<div id="original" class="drop">
Original file:<br/>
Drop or click to open image
</div>
<div class="inputs">
<p>Fuzz</p>
<p>
percent <input type="number" value="1" id="fuzz-percent"> OR distance <input type="number" id="fuzz-distance">
</p>
<p class="percent"></p>
</div>
<div id="candidate" class="drop">
Candidate file:<br/>
Drop or click to open image
</div>
</header>
<div id="image" class="content">
</div>
<footer>
<a href="https://github.com/catdad">
<i class="material-icons">code</i>
<span> with </span>
<i class="material-icons">favorite</i>
<span> by <b>catdad</b></span>
</a>
</footer>
<script type="module">
import loader from './src/loader.js';
// document.querySelector('.unsupported').remove();
// document.querySelector('.container').classList.remove('hide');
window.addEventListener('load', function () {
loader();
});
</script>
<script src="/icons/favicon.js" async></script>
<script src="/analytics.js" async></script>
</body>
</html>