-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
50 lines (41 loc) · 1.36 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
50
<html>
<head>
<script src="https://unpkg.com/unmute" data-add-button="true"></script>
<script src="https://unpkg.com/@webcomponents/webcomponentsjs@^2/webcomponents-bundle.js"></script>
<script src="https://unpkg.com/tone"></script>
<script src="https://unpkg.com/@tonejs/ui"></script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script src="lib/teoria-2.2.0/teoria.js"></script>
<style>
.resp-container {
position: relative;
overflow: hidden;
padding-top: 56.25%;
}
.resp-iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 0;
}
</style>
</head>
<body>
<h1>Hyvää joulua</h1>
<br />
<label for="oscillator-waveform">Oscillator waveform</label>
<select
name="oscillator-waveform"
id="oscillator-waveform"
onchange="changeSynthWaveform(this)">
<option value="triangle">Triangle</option>
<option value="sine">Sine</option>
<option value="square">Square</option>
<option value="sawtooth">Sawtooth</option>
</select>
<embed id="tonnetz" src="images/tannenbaum.svg" type="image/svg+xml">
<script src="tonnetz.js"></script>
</body>
</html>