jQuery - .fadeIn() 和 .fadeOut() - 交换 DIV

发布于 2024-09-11 17:54:53 字数 829 浏览 5 评论 0原文

我有一个 HTML 页面,其中有一些用 display:none; 隐藏的 div,我希望能够 .fadeIn().fadeOut ()用另一个替换一个。

我目前有一个链接设置应该可以做到这一点,这是我正在尝试的 Javascript:

$('#footer a').click(function() {                   
    $('#content > *').fadeOut('fast', function(){
        $('#contact').fadeIn('slow');
    });
    return false;
});

这是 HTML 布局的快速想法:

<html>
<head></head>
<body>
<div id="content">
 <div id="contact"></div>
 <div id="about"></div>
 <div id="main"></div>
</div>
</body>
</html>

所以,我有 .fadeIn() 作为 .fadeOut() 的回调,但当新内容淡入时我仍然看到旧内容闪现!更不用说各种其他奇怪的事情,例如 jQuery 没有应用于我用 .load() 插入的外部 HTML,但我想这是另一篇文章了。

I've got an HTML page with a few divs hidden withdisplay:none;that I'd like to be able to.fadeIn()and.fadeOut()replacing one with the other.

I've currently got a link setup that should do just that, here is the Javascript I'm trying:

$('#footer a').click(function() {                   
    $('#content > *').fadeOut('fast', function(){
        $('#contact').fadeIn('slow');
    });
    return false;
});

And here is a quick idea of the HTML layout:

<html>
<head></head>
<body>
<div id="content">
 <div id="contact"></div>
 <div id="about"></div>
 <div id="main"></div>
</div>
</body>
</html>

So, I've got the.fadeIn()as a callback to the.fadeOut(), but I still see a flash of the old content by the time the new content is fading in! Not to mention all kinds of other weirdness such as jQuery not being applied to external HTML that I insert with.load(), but that's for another post I suppose.

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

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

发布评论

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

评论(1

稀香 2024-09-18 17:54:53

但我仍然看到旧时的影子
新内容发布时的内容
淡入!

这很可能是因为回调了 fadeOut,请尝试以下操作:

$('#footer a').click(function() {                   
    $('#content > *').stop().fadeOut('fast');
    $('#contact').delay(1000).fadeIn('slow');
    return false;
});

but I still see a flash of the old
content by the time the new content is
fading in!

That's most likely because of callback to fadeOut, try this instead:

$('#footer a').click(function() {                   
    $('#content > *').stop().fadeOut('fast');
    $('#contact').delay(1000).fadeIn('slow');
    return false;
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文