gpt4 book ai didi

javascript - WebkitAnimationEnd 没有触发。谁能明白为什么?

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:53:49 34 4
gpt4 key购买 nike

我最近开始研究 Javascript,并且可以在我的工作中看到一些不错的动画结束监听器应用程序。我有以下代码,但我的动画结尾听众都没有触发。任何人都可以看出两个听众中的任何一个不工作的任何原因吗?我在 Chrome 中查看。

http://jsfiddle.net/spacebeers/jkUyT/1/

#animationTest {
width: 150px;
text-align: center;
display: block;
padding: 20px;
background: #000;
color: #fff;
border-bottom: 10px solid red;
cursor: pointer;
transition: border-bottom 0.5s linear; /* vendorless fallback */
-o-transition: border-bottom 0.5s linear; /* opera */
-ms-transition: border-bottom 0.5s linear; /* IE 10 */
-moz-transition: border-bottom 0.5s linear; /* Firefox */
-webkit-transition: border-bottom 0.5s linear; /*safari and chrome */
}

#animationTest:hover {
border-bottom: 10px solid blue;
}

<a id="animationTest">Hover over me</a>

$('document').ready(function(){
var animationTest = document.getElementById('animationTest');

animationTest.addEventListener('webkitAnimationEnd', function(event){
alert("Finished animation (listener)!");
console.log("Finished animation (listener)!");
}, false );

$('#animationTest').bind("webkitAnimationEnd", function(event){
alert("Finished animation (bind)!");
console.log("Finished animation (bind)!");
}, false );
});

最佳答案

应该是webkitTransitionEnd

http://jsfiddle.net/jkUyT/3/

关于javascript - WebkitAnimationEnd 没有触发。谁能明白为什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11635056/

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