gpt4 book ai didi

javascript - jQuery 动画延迟

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

如何使用 jQuery 延迟动画?

我需要获取一个navigation展开宽度,然后展开高度,然后reversed做反向动画。

代码:

$(function() {
$("#nav li").not("#logo, #nav li ul li").hover(function(){
$(this).animate({width:"200px"},{queue:false,duration:1000});
}, function(){
$(this).animate({width:"30px"},{queue:false,duration:1000});
});


$("#nav li.parent").hover(function(){
$(this).children("ul").animate({height:"40px"},{queue:false,duration:500});
}, function(){
$(this).children("ul").animate({height:"0px"},{queue:false,duration:500});
});
});

最佳答案

使用 jQuery .delay(N) 方法,其中 N 是延迟的毫秒数。

jsFiddle example

关于javascript - jQuery 动画延迟,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6986655/

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