-
-
Save thomasdunn/64740c53d0c9bf89e4b5 to your computer and use it in GitHub Desktop.
Voronoi-based item selection
This file contains hidden or 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
<html> | |
<head> | |
<script type="text/javascript" src="http://mbostock.github.com/d3/d3.js"></script> | |
<script type="text/javascript" src="http://mbostock.github.com/d3/d3.geom.js"></script> | |
</head> | |
<body> | |
<div id="chart"> | |
</div> | |
<script type="text/javascript"> | |
var w = 960, | |
h = 500; | |
var vertices = d3.range(100).map(function(d) { | |
return [Math.random() * w, Math.random() * h]; | |
}); | |
var svg = d3.select("#chart") | |
.append("svg:svg") | |
.attr("width", w) | |
.attr("height", h); | |
var paths, points, clips; | |
clips = svg.append("svg:g").attr("id", "point-clips"); | |
points = svg.append("svg:g").attr("id", "points"); | |
paths = svg.append("svg:g").attr("id", "point-paths"); | |
clips.selectAll("clipPath") | |
.data(d3.geom.voronoi(vertices)) | |
.enter().append("svg:clipPath") | |
.attr("id", function(d, i) { return "clip-"+i;}) | |
.append("svg:path") | |
.attr("d", function(d) { return "M" + d.join(",") + "Z"; }); | |
paths.selectAll("circle") | |
.data(vertices) | |
.enter().append("svg:circle") | |
.attr('cx', function(d) { return d[0]; }) | |
.attr('cy', function(d) { return d[1]; }) | |
.attr('r', 22) | |
.attr('data-point-id', function(d, i) { | |
return "point-"+i; }) | |
.attr("id", function(d,i) { | |
return "path-"+i; }) | |
.attr("clip-path", function(d,i) { return "url(#clip-"+i+")"; }) | |
.style("fill", d3.rgb(230, 230, 230)) | |
.style('fill-opacity', 0.4) | |
.style("stroke", d3.rgb(200,200,200)); | |
function onselect(d, i) { | |
d3.select(this) | |
.style('fill', d3.rgb(31, 120, 180)); | |
svg.select('circle#point-'+i) | |
.style('fill', 'yellow') | |
.style('fill', 'yellow') | |
} | |
paths.selectAll("circle") | |
.on("touchstart", onselect) | |
.on("click", onselect); | |
points.selectAll("circle") | |
.data(vertices) | |
.enter().append("svg:circle") | |
.attr("id", function(d, i) { | |
return "point-"+i; }) | |
.attr("transform", function(d) { return "translate(" + d + ")"; }) | |
.attr("r", 10) | |
.attr('stroke', 'none'); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment