gpt4 book ai didi

jquery - 将 div 从页面顶部到中心设置动画

转载 作者:行者123 更新时间:2023-12-01 07:30:07 25 4
gpt4 key购买 nike

我想要一个 div 从页面顶部到页面中心进行动画处理。我使用绝对定位并制作顶部:$(window).height/2。我也尝试过 top:50%。

但它在不同的屏幕上显示不同的结果。您能建议任何稳定的解决方案吗?这是我的代码:

        $('#targets').fadeIn('fast').animate({
'top': ($(window).height()/2) - 20
}, {duration: 'slow', queue: false}, function() {
// Animation complete.
});

最佳答案

$(function() {
var tar = $('#targets');
tar.fadeIn().animate({top: $(window).height()/2 - tar.outerHeight()/2}, {duration: 'slow', queue: false}, function() {
//Animation complete.
});
});

这应该符合您的需求。这是一个工作 fiddle :http://jsfiddle.net/7R2wK/

关于jquery - 将 div 从页面顶部到中心设置动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6829206/

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