gpt4 book ai didi

javascript - 如何使用 jquery 缓慢地设置 div 的宽度动画

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

我将导航嵌套在左侧屏幕外的 div 中,当用户向下滚动页面并到达像素 296 时,左侧导航的宽度向右逐渐增加,从而慢慢出现。

我现在所拥有的是一半的工作。当用户向下滚动页面时,嵌套在 div 中的导航会出现,但我希望它向右缓慢设置动画,但这并没有发生。不确定我做错了什么。我遇到问题的具体行是:

$("#slidebottom").animate({ width: "100" }, 'slow');

但这是我的全部代码:

$(window).scroll(function(){

var wintop = $(window).scrollTop(), docheight = $(document).height(),
winheight = $(window).height();

var bottomHeight = $("#slidebottom").height();
var zeroheight = 0;

if  (wintop > 296) {
bottomHeight = $('#slidebottom').height(docheight);
$("#slidebottom").animate({ width: "100" }, 'slow');

}

if( wintop < 296)
{
bottomHeight = $('#slidebottom').height(zeroheight);
//$("#slidebottom").animate({ width: "0" }, 'slow');
}
});

最佳答案

jQuery docs显示整数而不是字符串作为宽度的参数:

$("#slidebottom").animate({ width: 100 }, 'slow');

编辑:所以我错了,这不是问题;它也能处理字符串。

关于javascript - 如何使用 jquery 缓慢地设置 div 的宽度动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18198216/

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