0

在下面的示例中,我在右侧有一个滚动框。我希望它停在脚上方而不是骑在上面。 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');  
    }); 

感谢所有的帮助

4

1 回答 1

0

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

像这样

#footer {
float: left;
width: 100%;
position: relative;
z-index: -1;
background: white;
}
于 2012-10-09T11:48:29.780 回答