我想从我的附加元素中设置“停止”。
例如在http://9gag.com/上投票,它会滚动到其父容器。
我为此使用了词缀,我发现了“data-offset-bottom”属性(没有太多记录)
<div id="news" class="homepage-row row">
<div class="col-xs-3">
<div class="ssAffix" data-spy="affix" data-offset-top="400" data-offset-bottom="800">
123
</div>
</div>
<div class="col-xs-9">
<div id="homepage-gallery" class="product-gallery">
gallery here
</div>
</div>
</div>
body {
position:relative
}
.ssAffix {
height: 200px;
width: 200px;
}
.ssAffix.affix{
top:50px;
bottom:auto;
}
.ssAffix.affix-top{}
.ssAffix.affix-bottom{
position:absolute;
top:0;
bottom:800px;
}
首先,我不知道这应该如何工作,如何计算data-offset-bottom
价值。
我只有一个词缀,我希望它贴在它的容器中 (#news)
在此之后,其他行至少有 1000px 空间。
同样有趣的是,对于data-offset-bottom="800
,当它变成 affix-bottom 时,元素被添加"top:-998.765625px"
,这个属性随着不同的data-offset-bottom
值而变化