5

我希望创建一个粘性标题。每次用户向下滚动并且原始标题消失时,“粘性”标题应该启动。

我目前使用这个:

$(function(){
    // Check the initial Poistion of the Sticky Header
    var stickyHeaderTop = $('#sticky').offset().top;
    $(window).scroll(function(){
        if( $(window).scrollTop() > stickyHeaderTop ) {
            //$('#sticky').css({position: 'fixed', top: '0px', float: 'right'});
            $('#sticky').addClass("sticky");
        } else {
            $('#sticky').removeClass("sticky");
        }
    });
});

虽然,当用户只是滚动时,当前的添加类“粘性”,而不是当原始标题应该消失时。

问候

4

2 回答 2

3

div用with包裹他id="whateveryouwannacallit"

并设置:

#whateveryouwannacalltit{
position:fixed;
top:0;
left: 0;
width:100%;
}
于 2012-01-14T16:37:30.283 回答
1

实际上,您不需要包装。这是代码

$(document).ready(function() {
  var stuck = $('#header');
  var start = $(div).offset().top;
  $.event.add(window, "scroll", function() {
    var p = $(window).scrollTop();
    $(stuck).css('position',((p)>start) ? 'fixed' : 'static');
    $(stuck).css('top',((p)>start) ? '0px' : '');
  });
});

信用转到此页面:http: //viralpatel.net/blogs/scroll-fix-header-jquery-facebook/

于 2013-01-20T20:40:09.773 回答