如何给鼠标悬停时间延迟
我有以下代码
$(document).ready(function(){
//When mouse rolls over
$("#nav #nav_li").mouseover(function(){
$(this).stop().animate({height:'140px', width:'182px'},{queue:false, duration:600})
});
//When mouse is removed
$("#nav #nav_li").mouseout(function(){
$(this).stop().animate({height:'11px', width:'146px'},{queue:false, duration:900})
});
});
,当我将鼠标
悬停在 #nav_li 上时,它会突然动画工作,几秒钟后它就会动画
谢谢大家
I have a following code
$(document).ready(function(){
//When mouse rolls over
$("#nav #nav_li").mouseover(function(){
$(this).stop().animate({height:'140px', width:'182px'},{queue:false, duration:600})
});
//When mouse is removed
$("#nav #nav_li").mouseout(function(){
$(this).stop().animate({height:'11px', width:'146px'},{queue:false, duration:900})
});
});
In that when i do mouse over its suddenly animate works
when i hover the #nav_li it will animate after few seconds
Thank you folks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
AFAIK,有 jQuery 插件 HoverIntent 来处理这个问题。
AFAIK, there is jQuery plugin HoverIntent to deal with that issue.