-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (35 loc) · 1.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="simulating that radio signal effect using the processing javascript library, p5js">
<title>Document</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.4.0/p5.js"></script>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<h1 class="logo">WSKETCH</h1>
<!-- inputs -->
<section class="inputs">
<label for="wave-speed">
Wave speed
<input type="range" name="wave-speed" id="wave-speed" step="0.1" min="0.1" max="5" value="1">
</label>
<label for="bg-color">
Bg Color
<input type="color" name="bg-color" id="bg-color" value="#ffffff">
</label>
<label for="wave-color">
Wave color
<input type="color" name="wave-color" id="wave-color" value="#000000">
</label>
<label for="wave-weight">
Wave Thickness
<input type="range" name="wave-weight" id="wave-weight" min="0.1" max="50" step="0.5" value="1.5">
</label>
</section>
<script src="js/sketch.js"></script>
</body>
</html>