-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (30 loc) · 1.11 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ascii</title>
<link rel="stylesheet" href="index.css">
<link rel="icon" href="assets/favicon.ico">
</head>
<body>
<div class="container">
<canvas id="canvas"></canvas>
<div class="controls">
<div class="slider">
<label for="resolution" id="resolutionLabel">Resolution: 10 px</label>
<input type="range" id="resolution" name="resolution" min="1" max="30" value="10">
</div>
<br>
<div class="upload">
<label for="imageUpload" id="uploadLabel">Transparent png</label>
<input type="file" id="imageUpload" accept=".png">
</div>
<div class="colour">
<button type="button" id="monoButton">Monochrome</button>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>