我有一个动画我想用于具有以下基本状态的翻转效果:
- resting:在第 0 帧和第 55 帧之间连续循环
- 鼠标输入:播放第 56 到 78 帧,然后在第 78 帧暂停
- 鼠标移出:播放第 79-95 帧,然后返回休息
除了静止状态下的连续循环外,我几乎让它工作。循环只播放一次,然后静止不动。我的代码如下:
代码笔: https ://codepen.io/anon/pen/pBXKeN
var animationContainer = document.getElementById("animation-container");
var animation = lottie.loadAnimation({
wrapper: document.getElementById("animation-wrapper"),
renderer: "svg",
loop: false,
autoplay: false,
prerender: true,
animationData: animationData,
});
animation.addEventListener('DOMLoaded',resting);
animationContainer.addEventListener("mouseenter", hoverStart);
animationContainer.addEventListener("mouseleave", hoverEnd);
function resting() {
animation.removeEventListener("complete", resting);
console.log('resting');
animation.playSegments([0, 55], true);
}
function hoverStart() {
console.log('hover started');
animationContainer.removeEventListener("mouseenter", hoverStart);
animation.playSegments([56, 78], true);
animationContainer.addEventListener("mouseleave", hoverEnd);
}
function hoverEnd() {
console.log('hover ended');
animationContainer.removeEventListener("mouseleave", hoverEnd);
animation.playSegments([79, 95], true);
animation.addEventListener("complete", resting);
animationContainer.addEventListener("mouseenter", hoverStart);
}
我尝试将循环设置为 true,但这会导致所有 3 个状态都循环,这不是 mouseenter 和 mouseleave 效果的预期效果。有没有办法让一个部分循环?
如果它使事情变得更简单,我也很高兴切换到 jQuery。