Jquery 淡入和淡出

发布于 2024-08-12 00:54:02 字数 448 浏览 6 评论 0原文

看看这个:http://novarose.co.cc/web2/

淡入淡出效果有点混乱起来,我不知道如何使然后正常工作。

我希望代码按以下顺序运行:

  1. 淡出块
  2. 插入新内容
  3. 淡入块

该页面的 jQuery 代码:

$('#navigation a').click(function(){ $.get("page.php", { 页面: $(this).attr('id') }, function(data){ $('#content').fadeOut('slow').html(data).fadeIn('slow'); }); });

Check this out: http://novarose.co.cc/web2/

Fade effects are kinda messed up and I do not how to make then work properly.

I want code to run in following sequence:

  1. Fade out block
  2. Insert new content
  3. Fade in block

My jQuery code for that page:

$('#navigation a').click(function(){
$.get("page.php", { page: $(this).attr('id') }, function(data){
$('#content').fadeOut('slow').html(data).fadeIn('slow');
});
});

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

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

发布评论

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

评论(2

黑白记忆 2024-08-19 00:54:02

你的问题在这里: $('#content').fadeOut('slow').html(data).fadeIn('slow'); });
这会在 fadeOut 完成之前启动 fadeIn。您想要执行此操作:

$('#content').fadeOut('slow', function(){
  $(this).html(data).fadeIn('slow')
});

fadeOut 的第二个参数是fadeOut 完成后调用的函数。

Your problem is here: $('#content').fadeOut('slow').html(data).fadeIn('slow'); });
This starts the fadeIn before the fadeOut is done. You want to do this:

$('#content').fadeOut('slow', function(){
  $(this).html(data).fadeIn('slow')
});

The second argument to fadeOut is a function to be called after fadeOut is finished.

土豪我们做朋友吧 2024-08-19 00:54:02

您可以将淡出移到 ajax 调用之前:

$('#navigation a').click(function(){ $('#content').fadeOut('slow'); $.get("page.php", { page: $(this).attr('id') },
    function(data){ $('#content').html(data).fadeIn('slow'); }); });

You could move the fade out to before the ajax call:

$('#navigation a').click(function(){ $('#content').fadeOut('slow'); $.get("page.php", { page: $(this).attr('id') },
    function(data){ $('#content').html(data).fadeIn('slow'); }); });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文