-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimage-generator.html
More file actions
47 lines (44 loc) · 1.78 KB
/
image-generator.html
File metadata and controls
47 lines (44 loc) · 1.78 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Pixel Simulator Image Generator</title>
<link rel="icon" href="./img/favicon.png" type="image/x-icon">
<link href="image-generator.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="body">
<div id="title">Pixel Simulator Image Generator</div>
<label for="input">Upload File:</label>
<input type="file" id="input">
<label for="scaleInput">Scale:</label>
<input type="number" id="scaleInput" value="1" step="0.1">
<label for="widthInput">Width:</label>
<input type="number" id="widthInput" value="1" disabled>
<label for="heightInput">Height:</label>
<input type="number" id="heightInput" value="1" disabled>
<label for="noiseInput">Noise:</label>
<input type="number" id="noiseInput" value="10" min="0" step="1">
<label for="versionInput">Version:</label>
<select id="versionInput" value="3">
<option value="2">V2</option>
<option value="3" selected="true">V3</option>
</select>
<label for="smoothingInput">Smoothing:</label>
<input type="checkbox" id="smoothingInput" checked>
<button id="generateButton">Generate!</button>
<label>Progress:</label>
<div id="progressBar">
<div id="progressBarBackground"></div>
<div id="progressBarText"></div>
</div>
<label>Time Remaining:</label>
<div id="timeRemaining"></div>
<label for="output">Output:</label>
<textarea id="output"></textarea>
<button id="downloadButton">Download</button>
<script src="image-generator.js" type="module" defer></script>
</div>
</body>
</html>