jQuery fadeOut 回调不会触发...我做错了什么吗?

发布于 2024-11-09 13:20:39 字数 493 浏览 0 评论 0原文

这是我正在使用的代码,mouseenter 事件中“animate”的回调有效,但淡出的回调无效。我做错了什么吗?

$('#about-me .progress-bar .progress .notes li').live('mouseenter',function(){
    $(this).animate({
        top:25
    },function(){
        $(this).find('.caption').stop(true, true).fadeIn(200);
    });     
}).live('mouseleave',function(){
    $(this).find('.caption').stop(true, true).delay(400).fadeOut(400,function(){
        $(this).animate({
            top:40
        });         
    });
}); 

here is the code I am using, the call back on 'animate' in the mouseenter event works, but the callback on the fade out doesn't. Am I doing something wrong?

$('#about-me .progress-bar .progress .notes li').live('mouseenter',function(){
    $(this).animate({
        top:25
    },function(){
        $(this).find('.caption').stop(true, true).fadeIn(200);
    });     
}).live('mouseleave',function(){
    $(this).find('.caption').stop(true, true).delay(400).fadeOut(400,function(){
        $(this).animate({
            top:40
        });         
    });
}); 

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

彼岸花似海 2024-11-16 13:20:39

您想要为刚刚淡出的 .caption 添加动画吗?我怀疑不是,但这就是你的函数正在做的事情。尝试更改:

$(this).animate({
            top:40
        }); 

我假设

$(this).parents('li').animate({
            top:40
        }); 

这里的标题上方只有一里

Are you wanting to animate the .caption that you just faded? I would suspect not but this is what your function is doing. Try changing:

$(this).animate({
            top:40
        }); 

to

$(this).parents('li').animate({
            top:40
        }); 

I am assuming there is only one li above the caption here

峩卟喜欢 2024-11-16 13:20:39

.fadeOut([持续时间],[回调])

callback:回调函数
动画完成。

正如你所看到的,回调将在fadeOut完成时调用,这意味着你看不到该元素,那么你如何才能看到动画在其顶部 属性是否有效?也许您应该在回调函数中使用console.log("something")来查看它是否可以访问。

.fadeOut( [ duration ], [ callback ] )

callback: A function to call once the
animation is complete.

as you can see, the callback will be called when fadeOut is complete, which means that you can't see the element, then how could you see if the animate on its top property is working or not? maybe you should use console.log("something") in the callback function to see if it is reachable.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文