gpt4 book ai didi

twitter-bootstrap - Bootstrap : Stop affix when reaching end of certain div

转载 作者:行者123 更新时间:2023-12-04 15:33:03 28 4
gpt4 key购买 nike

当您滚动时,我有一个侧边栏。现在我希望它在到达某个 div 时停止(并修复)。

为了说明。
发生了什么:
http://postimg.org/image/l1n0djb0n/

我想要的是:
http://postimg.org/image/5evr05x8n/

到达最后一个内容的底部时,我需要停止 float (滚动)。

我怎样才能做到这一点?

CSS:

#sidebar.affix-top {
position: static;
margin-top:0px;
}

#sidebar.affix {
position: fixed;
top:49px;
}

HTML:
 <div id="sidebar" class="sidebar_package">
info for sidebar

<div class="hiddenpackage_c2a">
more content
</div>

</div>

JS:
//Side menu floater
$('#sidebar').affix({
offset: {
//top: $('header').height()
top:185
}
});

最佳答案

您可以使用底部偏移

$('#sidebar').affix({
offset: {
top: 180,
bottom: $('#bottom-div').outerHeight(true)
}
});

并添加以下css
.affix-bottom { 
position: absolute;
}

关于twitter-bootstrap - Bootstrap : Stop affix when reaching end of certain div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31881048/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com