-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (59 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>LCD shader</title>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0"
/>
<link type="text/css" rel="stylesheet" href="style.css" />
</head>
<body>
<div id="controlsContainer">
<div id="show">🔧</div>
<div id="hide" class="hidden">[X]</div>
<div id="controls" class="hidden">
<div class="control">
<label for="threshold">Detail: </label>
<input
class="uniform"
data-shader="1"
type="range"
min="1"
max="250"
value="100"
data-uniform="threshold"
/>
</div>
<div class="control">
<label for="stroke">Stroke: </label>
<input
class="uniform"
data-shader="2"
type="range"
min="0"
max="50"
value="20"
data-uniform="size"
/>
</div>
<div class="control">
<label for="pixel">Resolution: </label>
<input
class="uniform"
data-shader="3,4"
type="range"
min="0"
max="200"
value="100"
data-uniform="amount"
/>
</div>
</div>
</div>
<div id="frame"></div>
<div id="container"></div>
<script type="module" src="/main.js"></script>
</body>
</html>