gpt4 book ai didi

jquery - 滚动时可以重新定位的页脚

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

假设我有一个似乎固定在屏幕底部的页脚,但当用户向下滚动时,我希望在该页脚下显示内容。滚动后,页脚显示更像是屏幕宽的页眉而不是页脚。我怎样才能做到这一点?我对此很陌生,所以我有点沮丧。

我希望它像一个固定的页脚一样开始,但随着用户向下滚动,我希望页脚然后分离而不是固定的,但更像一个页眉。当用户返回时,它显示返回到固定状态。

这是我用于页脚的内容:

<div class="footer" id="footer">My Footer</div>

#footer
{
clear: both;
border: 1px groove #aaaaaa;
background: blue;
color: White;
padding: 0;
text-align: center;
vertical-align: middle;
line-height: normal;
margin: 0;
position: fixed;
bottom: 0px;
width: 100%;
}

最佳答案

JSFiddle

$(document).scroll(function() {     
if($(document).scrollTop() > 220) {
$('footer').css({
'position': 'static'
});
} else {
$('footer').css({
'position': 'fixed'
});
}
});

只需将 220 修改为适合您网站的值即可。

关于jquery - 滚动时可以重新定位的页脚,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17571638/

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