-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (73 loc) · 2.28 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html manifest="cache.manifest">
<title>Brickolage</title>
<head>
<meta http-equiv="expires" content="0">
<meta http-equiv="Cache-Control" content="no-cache">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-touch-fullscreen" content="yes">
<link rel="apple-touch-icon" href="favicon-white.png">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" type="text/css" href="css/nouislider.css">
<link rel="stylesheet" type="text/css" href="css/nouislider.pips.css">
<link rel="stylesheet" type="text/css" href="css/brickolage.css">
</head>
<body>
<div id="uiDiv">
<table>
<tr>
<td>
Decay
<div id="decaySlider"></div>
</td>
<td>
Base Hue
<div id="hueSlider" class="hue-slider"></div>
</td>
<td>
Base Saturation
<div id="satSlider"></div>
</td>
<td>
Base Brightness
<div id="brightSlider"></div>
</td>
</tr>
<tr>
<td>
<div id="widthSlider"></div>
Width
</td>
<td>
<div id="hueRangeSlider"></div>
Hue Range
</td>
<td>
<div id="satRangeSlider"></div>
Saturation Range
</td>
<td>
<div id="brightRangeSlider"></div>
Brightness Range
</td>
</tr>
</table>
</div>
<div id="canvasDiv"></div>
<div id="bottomDiv">
<span id="statusSpan"></span>
•
<span id="fpsSpan"></span>
•
<a href="https://github.com/hobzcalvin/brickolage">github.com/hobzcalvin/brickolage</a>
</div>
<script src="js/p5.js"></script>
<script src="js/p5.dom.js"></script>
<script src="js/nouislider.js"></script>
<script src="js/opc.js"></script>
<script src="js/brickolage.js"></script>
</body>
</html>