-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
49 lines (48 loc) · 1.46 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 lang="en">
<head>
<link
href="https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" type="text/css" href="slider.css" />
<link rel="stylesheet" type="text/css" href="style.css" />
<title>Additive Synth</title>
</head>
<body>
<div class="info">
<span
>Made by
<a href="https://ejarzo.github.io" target="blank"
>Elias Jarzombek</a
></span
>
|
<a href="https://github.com/ejarzo/additive-synth" target="blank"
>GitHub</a
>
</div>
<main>
<div class="controls-text">
<strong>Controls</strong><br />
Space bar to play<br />
Move mouse left and right to change chords<br />
Use Z and X to change octave<br />
</div>
<div>
<div id="controls">
<!-- <button id="play-button" onclick="toggleTransport()">
play/stop
</button> -->
</div>
</div>
</main>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.1.9/p5.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tone/14.7.61/Tone.js"></script>
<script src="./teoria.js"></script>
<script src="utils.js"></script>
<script src="synth.js"></script>
<script src="script.js"></script>
</body>
</html>