看一下这个: http: //novarose.co.cc/web2/
淡化效果有点搞砸了,我不知道如何使然后正常工作。
我希望代码按以下顺序运行:
- 淡出块
- 插入新内容
- 淡入块
该页面的我的 jQuery 代码:
$('#navigation a').click(function(){ $.get("page.php", { page: $(this).attr('id') }, function(data){ $('# content').fadeOut('slow').html(data).fadeIn('slow'); }); });