-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
30 lines (27 loc) · 967 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
27
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Generative Processing</title>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/p5.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/dat-gui/0.7.7/dat.gui.min.js"></script>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/simplex-noise/2.4.0/simplex-noise.min.js"></script> -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/chroma-js/2.1.2/chroma.min.js"></script>
<style>
body {
display: grid;
place-items: center;
height: 100vh;
margin: 0;
}
canvas {
width: initial !important;
height: 90vh !important;
box-shadow: 0 4px 16px rgb(0, 0, 0, 0.5);
}
</style>
<script src="/sketches/v2/sketches/shadow.js" type="module"></script>
</head>
<body></body>
</html>