gpt4 book ai didi

jquery - 让一个居中的 DIV 在短暂的延迟后向下移动页面

转载 作者:太空宇宙 更新时间:2023-11-04 05:25:40 25 4
gpt4 key购买 nike

$(window).bind("load", function() {
$('#container').fadeIn('800');
$('#container').css({margin: '(0px auto 0px auto)'});
$('#container').animate({margin: '(60px auto 0px auto)'}, 20000).delay(100);
});

我有要淡入的容器,但我希望它在延迟后从顶部边缘向下滑动 60 像素。由于某种原因,我无法让它工作。

最佳答案

你需要链接你的效果

$(window).bind("load", function() {
$('#container').css({margin: '(0px auto 0px auto)'})
.fadeIn(800)
.delay(100)
.animate({margin: '(60px auto 0px auto)'}, 20000);
});

关于jquery - 让一个居中的 DIV 在短暂的延迟后向下移动页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5123845/

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