我正在使用Web Animation API创建一个简单的动画,这样当用户在鼠标上移动时target
,动画应该从左到右开始,当用户将鼠标移开时target
,动画应该反转并且target
应该从右到左。
目前,如果用户在动画过程中将鼠标移入/移出,动画会很生涩,而且我没有平滑的效果。
我想知道如何解决这个问题。
注意:目前我正在使用 Web Animation API。但是在使用 CSS 关键帧动画时也会出现同样的问题。
我还尝试使用以下解决方案来解决此问题,这改善了情况,但仍然存在问题。这是一个现场示例https://jsfiddle.net/x784xwoa/5/
var elm = document.getElementById("target");
var player = document.getElementById("target");
elm.addEventListener('mouseover', function(event) {
console.log('mouseover', player.playState, 'animate');
player = elm.animate(
[{
left: "0px",
boxShadow: 'rgba(0, 0, 0, 0.5) 0px 0px 0px 0px'
}, {
left: "100px",
boxShadow: 'rgba(0, 0, 0, 0.9) 50px 150px 100px 0px'
}], {
duration: 3000,
direction: "normal",
fill: "forwards",
iterations: 1
}
);
});
elm.addEventListener('mouseout', function(event) {
console.log('mouseout', player.playState, 'reverse');
player.reverse();
});
#target {
position: relative;
top: 0;
left: 0;
width: 100px;
height: 150px;
background-color: red;
}
<div id="target"></div>