-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·27 lines (27 loc) · 987 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf8">
<script src="node_modules/p5/lib/p5.js"></script>
<script src="node_modules/p5/lib/addons/p5.dom.js"></script>
<!-- <script src="node_modules/acorn/dist/acorn.js"></script> -->
<!-- <script src="node_modules/acorn/dist/walk.js"></script> -->
<!-- <script src="lib/escodegen.browser.js"></script> -->
<!-- <script src="node_modules/escodegen/escodegen.browser.js"></script> -->
<style>
body {
padding: 0;
margin: 0;
}
</style>
</head>
<body>
<!-- <script src="sketches/dotwave.js"></script> -->
<!-- <script src="sketches/noise.js"></script> -->
<!-- <script src="sketches/waves/FlowField.js"></script> -->
<!-- <script src="sketches/waves/waves.js"></script> -->
<script src="sketches/starfield/star.js"></script>
<script src="sketches/starfield/field.js"></script>
<script src="sketches/starfield/sketch.js"></script>
</body>
</html>