77

滚动到该位置后如何div保持固定div?我div在页面后面有一个,您需要滚动才能找到它div

如果我使用:

.divname {
  position: fixed;
}

div出现在它应该正常出现之前。也许我需要的一个很好的例子是9gag上的第二个广告。如果您的屏幕分辨率足够低,则在加载首页后您将看不到该广告,但在您向下滚动后,您会看到第二个广告,并且在您向下滚动时它会保持不变。

4

6 回答 6

135

现在只能使用 CSS,请参阅https://stackoverflow.com/a/53832799/1482443


如果有人需要 jQuery 方法,下面是 8 年前发布的原始答案:

我知道这仅标记为 html/css,但您不能仅使用 css 来执行此操作。最简单的方法是使用一些 jQuery。

var fixmeTop = $('.fixme').offset().top;       // get initial position of the element

$(window).scroll(function() {                  // assign scroll event listener

    var currentScroll = $(window).scrollTop(); // get current position

    if (currentScroll >= fixmeTop) {           // apply position: fixed if you
        $('.fixme').css({                      // scroll to that element or below it
            position: 'fixed',
            top: '0',
            left: '0'
        });
    } else {                                   // apply position: static
        $('.fixme').css({                      // if you scroll above it
            position: 'static'
        });
    }

});

http://jsfiddle.net/5n5MA/2/

于 2013-04-06T11:31:14.897 回答
80

这在 CSS3 中是可能的。只需使用position: sticky,如此处所示

position: -webkit-sticky; /* Safari & IE */
position: sticky;
top: 0;
于 2018-12-18T12:16:01.217 回答
6

jquery函数最重要

<script>
$(function(){
    var stickyHeaderTop = $('#stickytypeheader').offset().top;

    $(window).scroll(function(){
            if( $(window).scrollTop() > stickyHeaderTop ) {
                    $('#stickytypeheader').css({position: 'fixed', top: '0px'});
                    $('#sticky').css('display', 'block');
            } else {
                    $('#stickytypeheader').css({position: 'static', top: '0px'});
                    $('#sticky').css('display', 'none');
            }
    });
});
</script>

然后使用 JQuery 库...

<script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>

现在使用 HTML

<div id="header">
    <p>This text is non sticky</p>
    <p>This text is non sticky</p>
    <p>This text is non sticky</p>
    <p>This text is non sticky</p>
 </div>

<div id="stickytypeheader">
 <table width="100%">
  <tr>
    <td><a href="http://growthpages.com/">Growth pages</a></td>

    <td><a href="http://google.com/">Google</a></td>

    <td><a href="http://yahoo.com/">Yahoo</a></td>

    <td><a href="http://www.bing.com/">Bing</a></td>

    <td><a href="#">Visitor</a></td>
  </tr>
 </table>
</div>

<div id="content">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit,
sed do eiusmod tempor incididunt ut labore et dolore magna
aliqua. Ut enim ad minim veniam, quis nostrud exercitation
ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis
aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat
cupidatat non proident, sunt in culpa qui officia deserunt
mollit anim id est laborum.</p>
</div>

在这里查看演示

于 2014-12-31T10:20:07.407 回答
4

添加到@Alexandre Aimbiré的答案 - 有时您可能需要指定z-index:1在滚动时让元素始终位于顶部。像这样:

position: -webkit-sticky; /* Safari & IE */
position: sticky;
top: 0;
z-index: 1;
于 2020-10-15T17:25:17.417 回答
2
<script>
if($(window).width() >= 1200){
    (function($) {
        var element = $('.to_move_content'),
            originalY = element.offset().top;

        // Space between element and top of screen (when scrolling)
        var topMargin = 10;

        // Should probably be set in CSS; but here just for emphasis
        element.css('position', 'relative');

        $(window).on('scroll', function(event) {
            var scrollTop = $(window).scrollTop();

            element.stop(false, false).animate({
                top: scrollTop < originalY
                    ? 0
                    : scrollTop - originalY + topMargin
            }, 0);
        });
    })(jQuery);
}

试试这个 !只需将类 .to_move_content 添加到您的 div

于 2017-02-22T09:01:46.470 回答
1

它对我有用

$(document).scroll(function() {
    var y = $(document).scrollTop(), //get page y value 
        header = $("#myarea"); // your div id
    if(y >= 400)  {
        header.css({position: "fixed", "top" : "0", "left" : "0"});
    } else {
        header.css("position", "static");
    }
});
于 2016-08-08T09:33:40.440 回答