-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex-2.html
43 lines (22 loc) · 956 Bytes
/
index-2.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>
<title>Dvd ScreenSaver</title>
<style>
html, body {
margin: 0;
padding: 10px 10px;
}
</style>
<body>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/p5.js">
</script>
<script src="main.js"></script>
<button onclick="buttonStart()">START</button><br>
<button onclick="buttonStop()">STOP</button><br>
R:<input type="range" id="slider" min="0" max="255" onchange="sliderChangeR(this.value)"/> <br>
G:<input type="range" id="slider" min="0" max="255" onchange="sliderChangeG(this.value)"/> <br>
B:<input type="range" id="slider" min="0" max="255" onchange="sliderChangeB(this.value)"/> <br>
Speed Y:<input type="range" id="slider" min="0" max="10" onchange="sliderChangeSY(this.value)"/> <br>
Speed X:<input type="range" id="slider" min="0" max="10" onchange="sliderChangeSX(this.value)"/><br>
Square Size:<input type="range" id="slider" min="1" max="300" onchange="sliderChangeSW(this.value)"/><br>
</body>
</html>