-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (22 loc) · 885 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.3.1/p5.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.3.1/addons/p5.sound.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<meta charset="utf-8" />
</head>
<body>
<div class="canvas">
<div class="slidecontainer">
<input type="range" min="0" max="255" value="50" class="sliderr" id="Red">
<input type="range" min="0" max="255" value="50" class="sliderg" id="Green">
<input type="range" min="0" max="255" value="50" class="sliderb" id="Blue">
<input type="range" min="0" max="25" value="5" class="slidergr" id="gradientS">
</div>
<button id="solid">SOLID</button>
<button id="gradient">GRADIENT</button>
</div>
<script src="sketch.js"></script>
</body>
</html>