如何创建临时补间序列没有KineticJS递归?(How to create ad-hoc twee

2019-11-03 02:28发布

是有可能创建根据没有递归保存在阵列中的数据在KineticJS补间序列?

这是我的,包括递归目前的解决方案:

function tweenFunc( image )
{
  setGlobalCoordinates();
  tween = new Kinetic.Tween({
    node: image, 
    duration: 1,
    x: x,
    y: y,
    rotation: rot,
    onFinish: function(){
      if ( counter++ < arr.length )
      {
        tweenFunc( image );
      }
    }
  });
  tween.play();
}

我想有解决方案之前,首先动画补间之后,从前身的最终位置开始它创建补间。 该项目包括了很多位置顺序在同一时间4个图像的动画。

文章来源: How to create ad-hoc tweens sequence without recursion in KineticJS?