-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpianokeys.js
190 lines (180 loc) · 4.05 KB
/
pianokeys.js
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
let whitekeysData = [
"C4",
"D4",
"E4",
"F4",
"G4",
"A4",
"B4",
"C5",
"D5",
"E5",
"F5",
"G5",
"A5",
"B5",
];
let blackkeysData = [
"C#4",
"D#4",
"F#4",
"G#4",
"A#4",
"C#5",
"D#5",
"F#5",
"G#5",
"A#5",
];
let pianosvg = d3
.select("#piano")
.append("svg")
.attr("width", 1600)
.attr("height", 200)
.style("background", "#F3F5F8")
.style("border-radius", "15px");
let whitekeywidth = 65;
let blackkeywidth = 40;
var whitekeys = pianosvg
.selectAll("whitekeys")
.data(whitekeysData)
.enter()
.append("rect")
.attr("x", (d, i) => {
return whitekeywidth * (i + 1);
})
.attr("y", 20)
.attr("width", whitekeywidth)
.attr("height", 2.5 * whitekeywidth)
.attr("stroke", "black")
.attr("fill", "white");
var blackkeys = pianosvg
.selectAll("blackkeys")
.data(blackkeysData)
.enter()
.append("rect")
.attr("x", (d, i) => {
/** Consider refactoring the code below. */
if (i < 2) {
return -0.5 * blackkeywidth + whitekeywidth * (i + 2);
} else if (i < 5) {
return -0.5 * blackkeywidth + whitekeywidth * (i + 3);
} else if (i < 7) {
return -0.5 * blackkeywidth + whitekeywidth * (i + 4);
} else {
return -0.5 * blackkeywidth + whitekeywidth * (i + 5);
}
})
.attr("y", 20)
.attr("width", blackkeywidth)
.attr("height", 2.5 * blackkeywidth)
.attr("stroke", "black")
.attr("fill", "black");
/** Build the white key labels below this line */
whiteKeyCircles = pianosvg
.selectAll("whitekeysLabels")
.data(whitekeysData)
.enter()
.append("circle")
.attr("cx", (d, i) => {
return whitekeywidth * (i + 1) + 0.5 * whitekeywidth;
})
.attr("cy", (d, i) => {
return whitekeywidth * 2.45;
})
.attr("r", 17)
.style("fill", "green")
.style("fill-opacity", 0.3)
.style("stroke-width", 2)
.style("stroke", "black")
.attr("visibility", "hidden");
pianosvg
.selectAll("minor_root_notes")
.data(whitekeysData)
.enter()
.append("text")
.attr("x", function (d, i) {
return whitekeywidth * (i + 1) + 0.5 * whitekeywidth;
})
.attr("y", (d, i) => {
return whitekeywidth * 2.5;
})
.attr("font-size", "16px")
.text(function (d) {
return d.substring(0, 1);
})
.style("text-anchor", "middle");
/** Build the black key labels below this line */
blackKeyCircles = pianosvg
.selectAll("blackkeylabels")
.data(blackkeysData)
.enter()
.append("circle")
.attr("cx", (d, i) => {
if (i < 2) {
return whitekeywidth * (i + 2);
} else if (i < 5) {
return whitekeywidth * (i + 3);
} else if (i < 7) {
return whitekeywidth * (i + 4);
} else {
return whitekeywidth * (i + 5);
}
})
.attr("cy", (d, i) => {
return blackkeywidth * 2.45;
})
.attr("r", 15)
.style("fill", "white")
.style("stroke-width", 3)
.style("stroke", "white")
.attr("visibility", "hidden");
blackKeyCircles2 = pianosvg
.selectAll("blackkeylabels")
.data(blackkeysData)
.enter()
.append("circle")
.attr("cx", (d, i) => {
if (i < 2) {
return whitekeywidth * (i + 2);
} else if (i < 5) {
return whitekeywidth * (i + 3);
} else if (i < 7) {
return whitekeywidth * (i + 4);
} else {
return whitekeywidth * (i + 5);
}
})
.attr("cy", (d, i) => {
return blackkeywidth * 2.45;
})
.attr("r", 15)
.style("fill", "green")
.style("fill-opacity", 0.3)
// .style("visibility", "hidden");
pianosvg
.selectAll("blackkeylabels")
.data(blackkeysData)
.enter()
.append("text")
.attr("x", function (d, i) {
if (i < 2) {
return whitekeywidth * (i + 2);
} else if (i < 5) {
return whitekeywidth * (i + 3);
} else if (i < 7) {
return whitekeywidth * (i + 4);
} else {
return whitekeywidth * (i + 5);
}
})
.attr("y", (d, i) => {
return blackkeywidth * 2.55;
})
.attr("font-size", "16px")
.text(function (d) {
return d.substring(0, 2);
})
.style("text-anchor", "middle")
.style("fill", "white");
pianoLabel = pianosvg.append("text").attr("x", 1050).attr("y", 114).style("font-size", 28).text("");