jQuery 淡入/淡出切换方法

发布于 2024-12-07 18:59:46 字数 860 浏览 0 评论 0原文

我在使用切换链接淡入和淡出的 if / else 语句时遇到问题。我可以让

淡入,但是,我似乎无法让它淡出。我对 if 和 else 语句有点陌生。

您可以在此处观看现场演示。

这是有问题的脚本:

<script type="text/javascript">


    function toggleFader() {
    if ($("#fade_content").is(":hidden")) {
        $("#contentThatFades").animate(
            {
                opacity: "0"    
            },
            600,
            function(){
                $("#fade_content").fadeOut();
            }
        );
    }
    else {
        $("#fade_content").fadeIn(600, function(){
            $("#contentThatFades").animate(
                {
                    opacity: "1"
                },
                600
            );
        });
    }
}


</script>

I am having trouble with an if / else statement for fading in and out using a toggle link. I can get the <div> to fade in, however, I can not seem to get it to fade out. I am somewhat new to if and else statements.

You can see a live demo here.

Here is the script in question:

<script type="text/javascript">


    function toggleFader() {
    if ($("#fade_content").is(":hidden")) {
        $("#contentThatFades").animate(
            {
                opacity: "0"    
            },
            600,
            function(){
                $("#fade_content").fadeOut();
            }
        );
    }
    else {
        $("#fade_content").fadeIn(600, function(){
            $("#contentThatFades").animate(
                {
                    opacity: "1"
                },
                600
            );
        });
    }
}


</script>

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

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

发布评论

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

评论(2

岁月蹉跎了容颜 2024-12-14 18:59:46

jQuery 已经有这个功能了。请参阅 http://api.jquery.com/fadeToggle/

然后你可以简单地执行以下操作:

$("#fade_content").fadeToggle(600);

jQuery already has a function for this. See http://api.jquery.com/fadeToggle/

then you can simply do this:

$("#fade_content").fadeToggle(600);
月下客 2024-12-14 18:59:46

为什么不使用fadeToggle()

function toggleFader() {
    $("#fade_content").fadeToggle(600);
}

Why don't you use fadeToggle()?

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