-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathcircle.html
More file actions
56 lines (49 loc) · 2.1 KB
/
circle.html
File metadata and controls
56 lines (49 loc) · 2.1 KB
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
51
52
53
54
55
56
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>The Tonnetz – One Key, Many Representations</title>
<link rel="stylesheet" href="index.css">
<!-- <link href="https://fonts.googleapis.com/css?family=Quicksand:400,500" rel="stylesheet"> -->
</head>
<body>
<div class=header>
<div style="background: #b30469"></div>
<div style="background: #822b9b"></div>
<div style="background: #5053cd"></div>
<div style="background: #1f7aff"></div>
<div style="background: #258dab"></div>
<div style="background: #2ba058"></div>
<div style="background: #31b304"></div>
<div style="background: #76a90d"></div>
<div style="background: #e6bd00"></div>
<div style="background: #ff941f"></div>
<div style="background: #e66438"></div>
<div style="background: #cc3450"></div>
</div>
<div id="proto" class="columns">
<div v-cloak>
<clock-octave :notes="notes" :width="500" :height="500" :intervals="1"></clock-octave>
</div>
<div v-cloak>
<clock-octave :notes="notes" :width="500" :height="500" :intervals="2"></clock-octave>
</div>
<div v-cloak>
<clock-octave :notes="notes" :width="500" :height="500" :intervals="3"></clock-octave>
</div>
<div v-cloak>
<clock-octave :notes="notes" :width="500" :height="500" :intervals="4"></clock-octave>
</div>
<div v-cloak>
<clock-octave :notes="notes" :width="500" :height="500" :intervals="5"></clock-octave>
</div>
<div v-cloak>
<clock-octave :notes="notes" :width="500" :height="500" :intervals="6"></clock-octave>
</div>
<piano-keyboard></piano-keyboard>
</div>
<script src="lib/fallback/fallback.min.js"></script>
<script src="js/loadDeps.js"></script>
<script src="js/index.js"></script>
</body>
</html>