gpt4 book ai didi

jquery - 偏移半窗口高度

转载 作者:行者123 更新时间:2023-12-01 00:08:03 24 4
gpt4 key购买 nike

我尝试将 body 高度的 50% 写为加法: .scrollTop() + 50%} 而不是 .scrollTop() + 200} 所以当鼠标离开 #tail div 时,它会恢复到窗口高度的一半。

    .bind('mouseleave', function(){
$('#wrapper').unbind('mousemove');

$('#tail').animate({top:$('body').scrollTop() + 50%},300)
});

添加百分比值的正确方法是什么?

谢谢

最佳答案

你可以试试这个。

.bind('mouseleave', function(){
$('#wrapper').unbind('mousemove');
var half_height = $(window).height()/2;
$('#tail').animate({top: half_height},300)
});

关于jquery - 偏移半窗口高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8860181/

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