0

我试着一个接一个地为汉字的笔画制作动画。为此,我使用了“在 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/


编辑:最终结果http://jsfiddle.net/0v7jjpdd/7/

4

1 回答 1

1

您需要将调用animateSO放入一个函数中,否则它将与其余代码一起调用:

.each("end", function() { animateSO(code, next) });

在这里完成演示。

于 2015-02-03T13:19:50.427 回答