gpt4 book ai didi

javascript - 如何使用 jquery 的 .load() 实现 "animate"页面之间的转换

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:37:37 25 4
gpt4 key购买 nike

我有这个 ajax 网站,页面通过 load() 加载,但是如何添加转换?一个简单的 FadeOut + FadeIn 就已经很好了。

这是我用来加载它的代码(加上加载指示器)。

我想要当前页面(只是容器)淡出,而新页面以淡入方式到达

$(document).ready(function() {
$('a').click(function(event) {
$("#container").append('<div id="loading">Loading...</div>');
event.preventDefault();
var url = $(this).attr('href');
$('div#container').load(url, function() { $("#loading").fadeOut() });
});
});

最佳答案

您需要比 .load() 更细粒度的东西,这样您就可以在新内容 之前执行 fadeOut()插入:

$(function()
{
var $container = $('#container');

$('a').click(function()
{
$container.html('<div id="loading">Loading...</div>');

var url = $(this).attr('href');

$.get(url, function (data)
{
$("#loading").fadeOut(function()
{
// without this the DOM will contain multiple elements
// with the same ID, which is bad.
$(this).remove();

$container.hide().html(data).fadeIn();
});
});

return false;
});
});

(非常基本)演示:http://jsfiddle.net/mattball/Cgqbx/

关于javascript - 如何使用 jquery 的 .load() 实现 "animate"页面之间的转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6065293/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com