bl.ocks.org/kgao/e5016924b1653c9a8aa378906d7491b1
Last active
February 16, 2017 21:47
-
-
Save kgao/e5016924b1653c9a8aa378906d7491b1 to your computer and use it in GitHub Desktop.
Test circle piano demo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
license: gpl-3.0 | |
height: 960 | |
border: no |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<style> | |
.key--white { fill: #fff; stroke: #777; } | |
.key--black { fill: #333; stroke: #000; } | |
.key--white:hover { fill: cyan; stroke: #00999b; } | |
.key--black:hover { fill: magenta; stroke: #910099; } | |
</style> | |
<svg width="960" height="960"></svg> | |
<script src="https://d3js.org/d3.v4.min.js"></script> | |
<script> | |
var svg = d3.select("svg"), | |
width = +svg.attr("width"), | |
height = +svg.attr("height"), | |
outerRadius = (height / 2 - 30), | |
innerRadius = outerRadius - 120, | |
g = svg.append("g").attr("transform", "translate(" + width / 2 + "," + height / 2 + ")"); | |
var over = "ontouchstart" in window ? "touchstart" : "mouseover", | |
out = "ontouchstart" in window ? "touchend" : "mouseout"; | |
var pie = d3.pie() | |
.startAngle(-Math.PI) | |
.endAngle(Math.PI) | |
.value(function() { return 1; }) | |
.sort(null); | |
var arc = d3.arc() | |
.cornerRadius(4) | |
.padRadius(outerRadius) | |
.innerRadius(function(d) { return d.sharp ? innerRadius + (outerRadius - innerRadius) * 0.3 : innerRadius; }); | |
var key = g.selectAll("path") | |
.data(sharpen(pie(repeat(["C", "D", "E", "F", "G", "A", "B"], 6 * 4)))) | |
.enter().append("path") | |
.each(function(d, i) { d.outerRadius = outerRadius - 10; }) | |
.attr("class", function(d) { return "key key--" + (d.sharp ? "black" : "white"); }) | |
.attr("d", arc) | |
.on(over, arcTween(outerRadius, 0)) | |
.on(out, arcTween(outerRadius - 10, 150)); | |
function arcTween(outerRadius, delay) { | |
return function() { | |
d3.event.preventDefault(); | |
d3.select(this).transition().delay(delay).attrTween("d", function(d) { | |
var i = d3.interpolate(d.outerRadius, outerRadius); | |
return function(t) { d.outerRadius = i(t); return arc(d); }; | |
}); | |
}; | |
} | |
function repeat(notes, n) { | |
return d3.merge(d3.range(n).map(function() { return notes; })); | |
} | |
function sharpen(keys) { | |
var keyWidth = Math.PI * 2 / keys.length; | |
for (var i = 0, n = keys.length - 1, k; i < n; ++i) { | |
if (/[CDFGA]/.test((k = keys[i]).data)) { | |
keys.splice(++i, 0, { | |
startAngle: k.startAngle + keyWidth * 0.65, | |
endAngle: k.endAngle + keyWidth * 0.35, | |
sharp: true | |
}); | |
++n; | |
} | |
} | |
for (var i = 0, n = keys.length; i < n; ++i) { | |
keys[i].sharp = !!keys[i].sharp; | |
keys[i].frequency = 440 * Math.pow(2, (i % 72 - 9) / 12 - 2); // 0 is middle C | |
} | |
return keys.sort(function(a, b) { return a.sharp - b.sharp; }); | |
} | |
(function() { | |
var AudioContext = window.AudioContext || window.webkitAudioContext || window.mozAudioContext || window.oAudioContext; | |
if (!AudioContext) return console.error("AudioContext not supported"); | |
if (!OscillatorNode.prototype.start) OscillatorNode.prototype.start = OscillatorNode.prototype.noteOn; | |
if (!OscillatorNode.prototype.stop) OscillatorNode.prototype.stop = OscillatorNode.prototype.noteOff; | |
var context = new AudioContext; | |
key.on(over + ".beep", function(d, i) { | |
var now = context.currentTime, | |
oscillator = context.createOscillator(), | |
gain = context.createGain(); | |
oscillator.type = "square"; | |
oscillator.frequency.value = d.frequency; | |
gain.gain.linearRampToValueAtTime(0.0, now + 0.0); | |
gain.gain.linearRampToValueAtTime(0.6, now + 0.1); | |
gain.gain.linearRampToValueAtTime(0.0, now + 1.0); | |
oscillator.connect(gain); | |
gain.connect(context.destination); | |
oscillator.start(0); | |
setTimeout(function() { oscillator.stop(); }, 1500); | |
}); | |
})(); | |
</script> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment