是否可以使用 jquery 实现反向粘性滚动条?

发布于 2024-11-28 00:45:43 字数 448 浏览 4 评论 0 原文

我正在尝试在网站上创建一种效果,其中使用以下 CSS 将元素固定到浏览器底部:

div.featured-image {
width: 100%;
position: fixed;
z-index: 10;
}

我想要发生的事情是使用类似 http://vertstudios.com/blog/demo/stickyscroller/demo.php 停止项目滚动 UP< /b>超过某一点。我在网站顶部放置了一个绝对定位的徽标,并且如果浏览器不够高,则不希望固定项目与它重叠。所以我试图让它无法滚动超过顶部大约 800px 的缓冲区,但仍然固定在页面底部。

I'm trying to create an effect on a website where an element is fixed to the bottom of the browser using the following CSS:

div.featured-image {
width: 100%;
position: fixed;
z-index: 10;
}

and what I want to happen is to use something like this http://vertstudios.com/blog/demo/stickyscroller/demo.php to stop the item from scrolling UP past a certain point. I have a logo placed at the top of the site positioned absolutely, and don't want the fixed item to overlap it if the browser is not tall enough. So I'm trying to get it to not be able to scroll past a buffer of around 800px at the top, but still stay fixed at the bottom of the page.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

花开浅夏 2024-12-05 00:45:43

您可以使用 JQuery 并基于 scrollTop() 动态设置/重置元素的顶部和底部 css 属性来实现此目的。

示例 JQuery:

$('#footer').css('top','550px'); 
$(document).bind('scroll',function(event) {
    var scrollTop = $(window).scrollTop();
    if (scrollTop <= 550) { 
        $('#footer').css('bottom',''); 
        $('#footer').css('top','550px'); 
    } else {
        $('#footer').css('top',''); 
        $('#footer').css('bottom','0px');
    }
});

CSS(用于 div#footer):

#footer{
    position: fixed;
    left: 0px;
    display: block;
    background-color: green;
    z-index: 10;
    height: 100px;
    width: 100%;
}

以及一个可用的 fiddle

You could do this with JQuery and dynamically setting/resetting the top and bottom css properties of the element based on a scrollTop().

Sample JQuery:

$('#footer').css('top','550px'); 
$(document).bind('scroll',function(event) {
    var scrollTop = $(window).scrollTop();
    if (scrollTop <= 550) { 
        $('#footer').css('bottom',''); 
        $('#footer').css('top','550px'); 
    } else {
        $('#footer').css('top',''); 
        $('#footer').css('bottom','0px');
    }
});

CSS (for div#footer):

#footer{
    position: fixed;
    left: 0px;
    display: block;
    background-color: green;
    z-index: 10;
    height: 100px;
    width: 100%;
}

And a working fiddle.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文