在下面的示例中,我在右侧有一个滚动框。我希望它停在脚上方而不是骑在它上面。 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');
});
感谢所有帮助
答案 0 :(得分:0)
只需将页脚z-index设置为-1
即可 像这样#footer {
float: left;
width: 100%;
position: relative;
z-index: -1;
background: white;
}