-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (28 loc) · 1.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Interactive Circle of Fifths</title>
<link rel="stylesheet" type="text/css" href="circle-of-fifths.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.21/lodash.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tone/14.8.26/Tone.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@tonaljs/tonal/browser/tonal.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/echarts/5.1.1/echarts.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/echarts/5.1.0/theme/dark-blue.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/echarts/5.1.0/theme/tech-blue.min.js"></script>
</head>
<body>
<section class="dashboard">
<div id="settings-container" class="container">
<button id="start-song">Play</button>
<button id="stop-song">Stop</button>
</div>
<div id="circle-of-fifths-container" class="chart-container container">
<div id="circle-of-fifths-major" class="echarts-entry" style="width: 800px; height: 800px;"></div>
<div id="circle-of-fifths-minor" class="echarts-entry" style="width: 800px; height: 800px;"></div>
<div id="circle-of-fifths-chords" class="echarts-entry" style="width: 800px; height: 800px;"></div>
</div>
</section>
<script type="module" src="circle-of-fifths.js"></script>
</body>
</html>