-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (38 loc) · 1.31 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
41
42
43
44
45
46
47
48
<!--
HTML container for Explore-a-Synth JS files and required libraries.
Must contain a div with `id=instrument` to match `canvas.parent('instrument')` used in `instrumentv3.js`, for example:
<div class="content">
<div class="instrumentHolder" id="instrument"></div>
</div>
Author: Kat Young
https://github.com/tibbakoi
2021
-->
<!DOCTYPE html>
<html lang="en">
<head>
<title>Explore-a-Synth</title>
<link rel="stylesheet" type="text/css" href="style.css">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- p5 (1.1.9)-->
<script src="libraries/p5.js"></script>
<!-- p5 sound: v0.3.11 required, p5 0.10.2 is last version -->
<script src="libraries/p5.sound.js"></script>
<!-- touchGUI -->
<script src="libraries/p5.touchgui.js"></script>
<!-- SceneManager -->
<script src="libraries/scenemanager.js"></script>
<!--- Required Explore-a-Synth JS files -->
<script src="instrumentv3.js"></script>
<script src="mainScene.js"></script>
<script src="soundScene.js"></script>
<script src="loudspeakerScene.js"></script>
</head>
<body>
<div class="content">
<!-- Contain the Explore-a-Synth in this div -->
<div class="instrumentHolder" id="instrument"></div>
</div>
</body>
</html>