-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (67 loc) · 2.04 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
<!doctype html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta charset="UTF-8" />
<script type="module" src="/main.js"></script>
<title>HEIC converter</title>
<link rel="stylesheet" href="/style.css" />
<link rel="icon" href="/favicon.svg" type="image/x-icon" />
<meta
name="description"
content="Convert HEIC files to JPEG in the browser. Fully local static web app, your pictures stay on your computer, fully open source, no cookies no nothing. Just converting images."
/>
</head>
<body>
<div class="root">
<div class="description">
<h1>HEIC converter</h1>
<p>
Convert HEIC files to JPEG in the browser. Fully local static web app,
your pictures stay on your computer, fully
<a
href="https://github.com/SimonSchneider/web-heic-conv"
target="_blank"
>open source</a
>
under the MIT licence, no cookies no nothing. Just converting images.
</p>
</div>
<div id="drop_zone">
<input
type="file"
id="fileInput"
multiple
accept="image/heic"
style="display: none"
/>
<label for="fileInput" id="fileSelect">Select HEIC files</label>
</div>
<div id="controls" class="controls">
<div>
<label for="quality">Quality</label>
<input
type="range"
id="quality"
min="0"
max="1"
step="0.01"
value="0.75"
/>
</div>
<div>
<label for="autoDownload">Auto download</label>
<input type="checkbox" id="autoDownload" />
</div>
<div>
<label for="format">Format</label>
<select id="format">
<option value="jpeg" selected>JPEG</option>
<option value="png">png</option>
</select>
</div>
</div>
<ul id="fileList" class="fileList"></ul>
</div>
</body>
</html>