gpt4 book ai didi

javascript - 如何在滚动后将 Div 更改为 "Fixed"

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

在 academicearth 的关于页面上,他们有一个 <aside>右边的标签是fixed一旦你开始滚动。

http://academicearth.org/about/

这是怎么做到的?

<aside> 之上标签变成fixed , 它也向右移动了一点以适应滚动显示的内容。

最佳答案

使用滚动事件..

$(document).scroll(function(e)
{
//grab position of scrollbar
position=$(document).scrollTop();
//when position match a height
if(position==desired_height)
{
//grab element
$('ele').css('position','fixed');
}
}

关于javascript - 如何在滚动后将 Div 更改为 "Fixed",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20597867/

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