-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (35 loc) · 1.31 KB
/
index.html
File metadata and controls
41 lines (35 loc) · 1.31 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
<!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>Interpolation</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="wrapper">
<div class="subwrapper" id="subwrapper">
<div id="input" class="dragscroll">
<div id="input_size" class="size-card"></div>
</div>
<div id="output" class="dragscroll">
<div id="output_size" class="size-card"></div>
</div>
</div>
<div class="actions">
<label for="open" class="open" id="open-btn">Open <img src="./folder-open-l.png" alt=""></label>
<input type="file" id="open" style="display: none;">
<select name="type" id="type">
<option value="linear">Linear</option>
<option value="cubic" selected>Cubic</option>
<option value="lanczos">Lanczos4</option>
</select>
<input type="number" id="factor" min="0.25" max="50" step="0.25" value="3">
<div id="loader"></div>
</div>
</div>
<script src="dragscroll.min.js"></script>
<script src="app.js"></script>
</body>
</html>