我试图从左到右动画绘制d3线。我很久以前写了下面的代码,从右到左动画它。现在重新审视它以改变方向。有点失落,现在已经很久了。任何人都可以帮助我。真的很感激它:)
var totalLength = lines.node().getTotalLength();
lines.attr('stroke-dasharray', totalLength + " " + totalLength).attr("stroke-dashoffset", totalLength)
.transition()
.duration(1000)
.ease("linear")
.attr("stroke-dashoffset", 0);