gpt4 book ai didi

jquery - 悬停时延迟显示内联 block

转载 作者:太空宇宙 更新时间:2023-11-04 14:43:43 25 4
gpt4 key购买 nike

我有一个正在制作动画的导航。然而,文本跳转是因为它在动画完成之前显示,所以我想在触发 display:inline-block 之前设置 300ms 的延迟。我无法让它工作?有任何想法吗?

$(".left-navigation ul li").hover(function(){
$(this).stop().animate({'width': '100%'}, 200);
$(this).find("span.nav-text").delay(300).css("display", "inline-block");
}, function(){
$(this).stop().animate({'width': '35px'}, 200);
$(this).find("span.nav-text").css("display", "none");
});

最佳答案

使用回调!

 $(this).stop().animate({'width': '100%'}, 200, function(){
// set your object visible here
});

关于jquery - 悬停时延迟显示内联 block ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18054329/

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