-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.html
34 lines (29 loc) · 1.01 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>p5.createLoop example</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
margin: 0;
overflow: hidden;
background-color: #333333;
}
</style>
<script src="https://cdn.jsdelivr.net/npm/p5@1.2.0/lib/p5.js"></script>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.8.0/p5.min.js"></script> -->
<!-- <script src="https://unpkg.com/p5.createloop@latest/dist/p5.createloop.js"></script> -->
<!-- <script src="./p5.createloop.js"></script> -->
<script src="./src/index.js"></script>
<!-- <script src="./examples/js/simpleLoop.js"></script> -->
<!-- <script src="./js/tester.js"></script> -->
<!-- <script src="./js/noiseLoop1d.js"></script> -->
<!-- <script src="./js/noiseLoop2d.js"></script> -->
<!-- <script src="./js/noiseLoop2x.js"></script> -->
<!-- <script src="./js/instanceMode.js"></script> -->
</head>
<body>
</body>
</html>