gpt4 book ai didi

javascript - 动画结束事件未触发

转载 作者:数据小太阳 更新时间:2023-10-29 05:43:11 25 4
gpt4 key购买 nike

我正在尝试向元素添加 animationend 事件,但该事件没有被触发。我做错了什么,我该如何解决?

JSFiddle

var btn = document.getElementById('btn');
var elem = document.getElementById('elem');
var timeOutFunc;

btn.addEventListener('click', function() {
elem.classList.add('show');
clearTimeout(timeOutFunc);
timeOutFunc = setTimeout(function() {
elem.classList.remove('show')
}, 1000);
});


elem.addEventListener('animationend', function(e) {
console.log('animation ended');
});
#elem {
background-color: orange;
width: 100px;
height: 100px;
opacity: 0;
transition: opacity 500ms ease;
}
#elem.show {
opacity: 1;
transition: none;
}
<button id="btn">Press Me</button>
<div id="elem"></div>

最佳答案

有两个独立的动画事件。

  1. 动画结束
  2. 过渡结束

当使用css transition时使用transitionend,当使用@keyframes/animation时,使用animationend

关于javascript - 动画结束事件未触发,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41530263/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com