在 Jquery 中悬停时终止事件
我以前在某处见过这个,但我似乎找不到这个小片段。
如果我有一个 div 在悬停时设置不透明度(或动画),但我在完成动画之前将鼠标悬停在该 div 上,我希望它切换回来。否则,我将鼠标悬停在它上面几次,然后等待 10 秒以上的动画/闪烁。
这是我的代码:
$("a.prev").hover(function(){
$(this).fadeTo("normal", 0.6);
},function(){
$(this).fadeTo("normal", .1);
});
I've seen this somewhere before but I can't seem to find the little snippet.
If I have a div that sets opacity (or animates up) on hover, but I hover off that div before its done animating, I want it to toggle back. Otherwise I hover over it a few times and I have 10+ seconds of animation/flashing to wait for.
Here is my code:
$("a.prev").hover(function(){
$(this).fadeTo("normal", 0.6);
},function(){
$(this).fadeTo("normal", .1);
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
stop()
:Use
stop()
: