-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmipmap-generator.html
More file actions
31 lines (28 loc) · 1020 Bytes
/
mipmap-generator.html
File metadata and controls
31 lines (28 loc) · 1020 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Pixel Simulator Mipmap Generator</title>
<link rel="icon" href="./img/favicon.png" type="image/x-icon">
<link href="mipmap-generator.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="body">
<div id="title">Pixel Simulator Mipmap Generator</div>
<label for="input">Upload File:</label>
<input type="file" id="input">
<label for="resolutionInput">Resolution:</label>
<input type="number" id="resolutionInput" value="120">
<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>
<script src="mipmap-generator.js" type="module" defer></script>
</div>
</body>
</html>