-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
47 lines (44 loc) · 1.86 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
<!DOCTYPE html>
<html>
<head>
<title>Groove Pizza with Keyboard Controls</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.7.2/p5.js" type="text/javascript"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.7.2/addons/p5.dom.js"></script>
<script type="text/javascript" src="lib/p5.speech.js"></script>
<script type="text/javascript" src="lib/Tone.js"></script>
<!-- this makes the canvas full screen without scrollbars -->
<style>
html, body {
margin: 0;
padding: 0;
overflow: hidden;
}
.hidden {
position:absolute;
left:-10000px;
top:auto;
width:1px;
height:1px;
overflow:hidden;
}
</style>
</head>
<body>
<script src="constants/keycode.js" type="text/javascript"></script>
<script src="constants/pizzafuncs.js" type="text/javascript"></script>
<script src="colorPalettes.js" type="text/javascript"></script>
<script src="keyMaps/keymap_standard.js" type="text/javascript"></script>
<script src="keyMaps/keymap_16th.js" type="text/javascript"></script>
<script src="keyMaps/keymap_master.js" type="text/javascript"></script>
<script src="instructions.js" type="text/javascript"></script>
<script src="audioMode.js" type="text/javascript"></script>
<script src="pizza.js" type="text/javascript"></script>
<!-- <script src="audioCues.js" type="text/javascript"></script> -->
<script src="mySketch.js" type="text/javascript"></script>
<header class="hidden">
<h1>Groove Pizza with Keyboard Controls</h2>
<p>This is a music app for making beats. It has built in text to speech and keyboard controls.</p>
<p>Please turn your screen reader off. Then, press tab to navigate to instructions.</p>
</header>
</body>
</html>