gpt4 book ai didi

Jquery:滚动时如何设置固定页脚

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

让我们展示这个网站:-

http://mhageer.com

但是,当我们滚动页面时...页脚消失并在滚动停止时重新出现...有没有办法让它固定在屏幕上并在您滚动时一直显示?

我该怎么做。

谢谢

最佳答案

试试这个示例可以帮助您。用户 bottom:0px; 将页脚放在页面底部。

HTML

<div class="footer">Test Footer</div>

CSS

.footer{
position:fixed;
padding-bottom:-10px;
bottom:0px;
background-color:red;
}

Fiddle

JQUERY Edit-1

 $(function(){
//Keep track of last scroll
var lastScroll = 0;
$(window).scroll(function(event){
//Sets the current scroll position
var st = $(this).scrollTop();

//Determines up-or-down scrolling
if (st > lastScroll){
$(".footer").css("display",'inline')
}
if(st == 0){
$(".footer").css("display",'none')
}
//Updates scroll position
lastScroll = st;
});
});

当页面加载时,页脚会自行隐藏,当您向下滚动时,它会显示在底部直到滚动到顶部。 Demo

关于Jquery:滚动时如何设置固定页脚,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21348666/

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