我试着一个接一个地为汉字的笔画制作动画。为此,我使用了“在 i 结束时,开始转换 i+1”each("end", animateSO(code,i+1))
,其中 animateSO 因此以增量回调自身。
// Animate strokes function
var animateSO = function(code, i){
var id= "#kvg\\:"+code+"-s"+i,
next=i+1;
var path = d3.select(id);
var totalLength = Math.ceil( path.node().getTotalLength() );
console.log("i: "+i+" ; id: "+id+" ; lenght: "+totalLength+"; i++: "+next);
path
.attr("stroke-dasharray", totalLength + " " + totalLength)
.attr("stroke-dashoffset", totalLength)
.transition()
.duration(totalLength*15)
.ease("linear")
.attr("stroke-dashoffset", 0)
.each("end", animateSO(code, next));
}
animateSO("07425", 1);
我希望在当前过渡结束.each("end", animateSO(code, next))
时开火。但是所有的过渡都是一起开始的。
如何,“在 i 结束时,开始过渡 i+1”?
小提琴:http: //jsfiddle.net/0v7jjpdd/4/