forked from Tonejs/Presets
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
49 lines (43 loc) · 1.23 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
49
<!DOCTYPE html>
<html>
<head>
<title>Presets</title>
<script type="text/javascript" src="https://tonejs.github.io/build/Tone.js"></script>
<script type="text/javascript" src="https://tonejs.github.io/Logo/build/Logo.js"></script>
<script type="text/javascript" src="scripts/codemirror.js"></script>
<script type="text/javascript" src="scripts/javascript.js"></script>
<script type="text/javascript" src="scripts/audiokeys.js"></script>
<script type="text/javascript" src="scripts/PresetList.js"></script>
<script type="text/javascript" src="scripts/listen.js"></script>
<link rel="stylesheet" type="text/css" href="style/codemirror.css">
<link rel="stylesheet" type="text/css" href="style/main.css">
</head>
<body>
<div id="Topbar"></div>
<div id="Presets">
<div id="Instruments">
<br>
<div id="Names">
<span>Instrument:</span>
<select></select>
</div>
<div id="Preset">
<span>Preset:</span>
<select></select>
</div>
<br>
<div id="JSON"></div>
<br>
<div id="ErrorText"></div>
<button>Update</button>
<br>
<br>
<div class="Block">
use your keyboard to hear the instrument.
<br>
<img src="style/audiokeys-mapping.jpg">
</div>
</div>
</div>
</body>
</html>