jquery 淡入回调不等待

发布于 2024-12-15 09:52:44 字数 770 浏览 2 评论 0原文

我试图让一个 div 淡出,然后让第二个 div 淡入其位置,但是第二个 div 淡出的回调似乎不会等待第一个 div 完成淡出,事实上它们都同时淡出时间提供交叉淡入淡出效果而不是淡出然后再淡出。这是代码:

$(document).ready(function () {

    //toggle story text
    $(function () {
        $("#imageGallery").scroll(function () {

            if ($(this).scrollLeft() > 1000) {

                $("#story2").fadeIn("300", function () {
                    $("#story1").fadeOut("300");
                });


            } else {

                $("#story1").fadeIn("slow");
                $("#story2").fadeOut("slow");
            }
        });

    })

});

以及我在以下位置使用它的页面:

http://www.jonathantopf.com/imijstudio/

有什么想法为什么会发生这种情况吗?

im trying to make a div fade out and then have a second div fade in in its place but the callback for the second div to fade is doesn't seem to wait for the first to finish fading, in fact they both fade at the same time giving a cross fade effect father than a fade out and then in afterwards. heres the code:

$(document).ready(function () {

    //toggle story text
    $(function () {
        $("#imageGallery").scroll(function () {

            if ($(this).scrollLeft() > 1000) {

                $("#story2").fadeIn("300", function () {
                    $("#story1").fadeOut("300");
                });


            } else {

                $("#story1").fadeIn("slow");
                $("#story2").fadeOut("slow");
            }
        });

    })

});

and the page im using it in:

http://www.jonathantopf.com/imijstudio/

any ideas why this is happening?

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

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

发布评论

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

评论(4

你在我安 2024-12-22 09:52:44

您将在淡出另一个 div 之前淡入新的 div。这会产生交叉淡入淡出效果,这就是您看到它的原因。也许您的意思是:

$("#story1").fadeOut("300", function () {
    $("#story2").fadeIn("300");
});

在淡入下一个之前淡出当前一个。然后,您将不会同时在屏幕上看到它们(例如,没有交叉淡入淡出)。

You're fading IN the new div before fading OUT the other div. That creates a cross fade effect so that's why you're seeing it. Perhaps what you mean to do is:

$("#story1").fadeOut("300", function () {
    $("#story2").fadeIn("300");
});

Fade out the current one before you fade in the next one. Then, you won't see them both on screen at the same time (e.g. no crossfade).

老旧海报 2024-12-22 09:52:44

通过示例 jsfiddle 来查看一下

$("#story1").fadeOut("300").delay(600,function(){$("#story2").fadeIn("300");})

Check this out with example jsfiddle

$("#story1").fadeOut("300").delay(600,function(){$("#story2").fadeIn("300");})
混浊又暗下来 2024-12-22 09:52:44

你应该尝试改变时间,它们以相同的速度缓和:

$("#story2").fadeIn("1000", function(){ $("#story1").fadeOut("300"); });

尝试一下:)

you should try to alter the times, they are easing at the same speed:

$("#story2").fadeIn("1000", function(){ $("#story1").fadeOut("300"); });

try that :)

疯了 2024-12-22 09:52:44

你可以尝试:
$("#story1").delay(500).fadeOut("300");

You could try:
$("#story1").delay(500).fadeOut("300");

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