1

使用 Lottie/BodyMoving,一旦 Lottie 动画到达某个帧,如何触发事件。

例如:一旦 anim1 到达某个帧,我希望 anim2 播放。

谢谢

4

1 回答 1

2

尝试enterFrame事件

  const anim = lottie.loadAnimation({ ...options, path: 'URL_TO_JSON' });
anim.addEventListener('enterFrame', () => {
  console.log('enterFrame', anim.currentFrame);
  if(anim.currentFrame == 55)
  {
  //stop and play 2nd one
  }
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/bodymovin/5.5.9/lottie.js"></script>
 <div style="width:1067px;height:600px"  class="lottie" data-animation-path="animation/" data-anim-loop="true" data-name="ninja"></div>

于 2020-01-29T12:32:43.617 回答