-
-
Save enjalot/3758369 to your computer and use it in GitHub Desktop.
just another inlet to tributary
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
{"editor_editor":{"coffee":false,"vim":false,"emacs":false,"width":652,"height":647,"hide":false},"endpoint":"tributary"} |
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
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 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment