-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (54 loc) · 1.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Noisemoji</title>
</head>
<body>
<div id="app">
<div class="tools">
<div class="slider">
<label for="config-speed">⌛</label>
<input
type="range"
min="0"
max="0.02"
step="0.001"
data-param="speed"
id="config-speed"
/>
</div>
<div class="slider">
<label for="config-scale">🌀</label>
<input
type="range"
min="0.5"
max="100"
step="0.5"
data-param="scale"
id="config-scale"
/>
</div>
<div class="slider">
<label for="config-radius">🕳️</label>
<input
type="range"
min="0.1"
max="10"
step="0.1"
data-param="radius"
id="config-radius"
/>
</div>
<div class="buttons">
<button data-map="base" class="map-button active">🌈</button>
<button data-map="terrain" class="map-button">🌎</button>
</div>
</div>
<span id="sample">⛔</span>
</div>
<script type="module" src="/main.js"></script>
</body>
</html>