4

我想从我的附加元素中设置“停止”。

例如在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值而变化

4

1 回答 1

8

另请参阅:Bootstrap 3.0:固定列

.affix-bottom是从页面底部算起的像素数。您附加的元素的底部将滚动到此位置。因为在 affix-bottom 处的位置设置为绝对值,您所贴容器的顶部将是负数(此容器的高度)。

在您的 CSS 中,您不必设置topbottomaffix-bottom 或将位置设置为绝对。

于 2013-09-07T18:37:15.383 回答