-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathexample.html
38 lines (35 loc) · 1.05 KB
/
example.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Spectral.js</title>
<style>
body {
padding: 0;
margin: 0;
}
</style>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/p5.js"></script>
<script src="spectral.js"></script>
<script src="sketch.js"></script>
</head>
<body style="font-family: Arial; color: #555555;">
<main>
<div style=" display: flex; justify-content: center; padding-top: 25px;">
<div style="width: 100%; max-width: 850px;">
<div style="padding: 0 25px;">
<div id="container">
</div>
<div id="palette" style="display: flex; justify-content: space-between; padding-bottom: 25px;">
</div>
<div style="display: flex; justify-content: space-between; padding-bottom: 25px;">
<div id="picker-1"></div>
<div id="picker-2"></div>
</div>
</div>
</div>
</div>
</main>
</body>
</html>