-
Notifications
You must be signed in to change notification settings - Fork 33
/
index.html
37 lines (28 loc) · 1.43 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
<html>
<head>
<title>Pink Trombone</title>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">
</head>
<body style="margin: 0; padding: 0; background-color:white">
<canvas id="tractCanvas" width="600" height="600"
style = "position: absolute; z-index: 1; background-color:transparent; margin: 0; padding: 0;">
</canvas>
<canvas id="backCanvas" width="600" height="600"
style = "position: absolute; z-index: 0; background-color:transparent; margin: 0; padding: 0;">
</canvas>
<script type="text/javascript" src="./utils/math.js"></script>
<script type="text/javascript" src="./utils/perlin-and-simplex-noise.js"></script>
<script type="text/javascript" src="./utils/browser-detection.js"></script>
<script type="text/javascript" src="./utils/make-button.js"></script>
<script type="text/javascript" src="./config.js"></script>
<!-- The only order requirement is that globals is before all the /lib files and the lib files are before the index.js -->
<script type="text/javascript" src="./globals.js"></script>
<script type="text/javascript" src="./lib/ui.js"></script>
<script type="text/javascript" src="./lib/audio-system.js"></script>
<script type="text/javascript" src="./lib/glottis.js"></script>
<script type="text/javascript" src="./lib/tract.js"></script>
<script type="text/javascript" src="./lib/tract-ui.js"></script>
<script type="text/javascript" src="./index.js"></script>
</body>
</html>