Skip to content

Instantly share code, notes, and snippets.

@enjalot
Created September 20, 2012 21:10
Show Gist options
  • Save enjalot/3758369 to your computer and use it in GitHub Desktop.
Save enjalot/3758369 to your computer and use it in GitHub Desktop.
just another inlet to tributary
{"editor_editor":{"coffee":false,"vim":false,"emacs":false,"width":652,"height":647,"hide":false},"endpoint":"tributary"}
var data = [
{x: 0, y:0},
{x: 62, y:66},
{x: 259, y:115},
{x: 339, y:10},
{x: 400, y:30},
]
var line = d3.svg.line()
.x(function(d) {
return d.x;
})
.y(function(d) {
return d.y;
});
var svg = d3.select("svg");
var group = svg.append("g")
.attr({
transform: "translate(" + [60, 150] + ")"
})
var path = group.append("path")
.attr({
d: line(data),
fill: "none",
stroke: "#000"
})
var len = path.node().getTotalLength();
var offset = 0;
path.attr({
"stroke-dasharray": len + " " + len,
"stroke-dashoffset": offset
})
var circle = group.append("circle")
.attr({
r: 10,
transform: function() {
var p = path.node().getPointAtLength(len - offset)
return "translate(" + [p.x, p.y] + ")";
}
})
svg.on("click", function() {
var dur = 2000;
path.transition()
.duration(dur)
.ease("bounce")
.attrTween("stroke-dashoffset", function(d,i) {
return function(t) {
return len * (1-t);
}
})
circle.transition()
.duration(dur)
.ease("bounce")
.attrTween("transform", function(d,i) {
return function(t) {
var p = path.node().getPointAtLength(len * t)
return "translate(" + [p.x, p.y] + ")";
}
})
})
//more info on this
//http://bl.ocks.org/1313857
//http://www.carto.net/svg/samples/animated_bustrack.shtml
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment