Div滚动顶部

时间:2012-10-09 11:45:09

标签: jquery scroll

在下面的示例中,我在右侧有一个滚动框。我希望它停在脚上方而不是骑在它上面。 http://piotr-m.pl/projekty/skladacze/espace/detal.html

        var offset = jQuery('aside').offset();  

    $(window).scroll(function () {  
    var scrollTop = $(window).scrollTop(); // check the visible top of the browser  
    if (offset.top<scrollTop) 
        $('aside').addClass('fixed').css('top', scrollTop-250); 
    else 
        $('aside').removeClass('fixed');  
    }); 

感谢所有帮助

1 个答案:

答案 0 :(得分:0)

只需将页脚z-index设置为-1

即可 像这样

#footer {
float: left;
width: 100%;
position: relative;
z-index: -1;
background: white;
}