-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (32 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>2021-12-01</title>
<style>
html,
body {
height: 100%;
}
body {
margin: 0;
display: flex;
justify-content: center;
align-items: center;
}
</style>
</head>
<body></body>
<!-- import the javascript library file(s) -->
<script src="https://unpkg.com/h264-mp4-encoder/embuild/dist/h264-mp4-encoder.web.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/p5.min.js" crossorigin="anonymous"></script>
<script src="colorTable.js" type="text/javascript"></script>
<script src="util.js" type="text/javascript"></script>
<script src="Palette.js" type="text/javascript"></script>
<script src="Point.js" type="text/javascript"></script>
<script src="FlowField.js" type="text/javascript"></script>
<script src="recordVideos.js" type="text/javascript"></script>
<!-- import the javascript sketch file -->
<script src="./sketch.js"></script>
</html>