-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
45 lines (35 loc) · 1.68 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>The Horizontal Way</title>
<script src="libraries/p5.js" type="text/javascript"></script>
<script src="libraries/p5.dom.js" type="text/javascript"></script>
<script src="libraries/p5.sound.js" type="text/javascript"></script>
<script src="sketch.js" type="text/javascript"></script>
<script src="scales.js" type="text/javascript"></script>
<script src="drones.js" type="text/javascript"></script>
<style> body {padding: 0; margin: 0;} canvas {vertical-align: top;} </style>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div><h1>The Horizontal Way</h1></div>
<div><h2 id="h2"></h2></div>
<div id="canvasDiv"></div>
<div><h3>Choose root, scale family, mode, interval and string pair:</h3></div>
<div id="inputDiv"></div>
<div><h3>Backing drone</h3></div>
<div id="playDiv"></div>
<div><h3>Click to generate a random exercise within the scale family:</h3></div>
<div id="generateDiv">
<p><button type="button" id="generateButton">Generate random</button></p>
</div>
<br>
<div id="credits">
<p>Made by <a href="https://github.com/kwichmann">Kristian Wichmann</a></p>
<p>Inspired by <a href="http://www.freakguitar.com/">Mattias IA Eklundh</a> and <a href="https://www.youtube.com/channel/UCvjgXvBlbQiydffZU7m1_aw">Dan Shiffman</a>.</p>
<p>Made using <a href="http://p5js.org/">p5.js</a>. Image adopted from <a href="https://en.wikipedia.org/wiki/Inlay_(guitar)">wikipedia</a>.
Drones by <a href="http://www.freakguitar.com/">Mattias IA Eklundh</a>.
</div>
</body>
</html>