我在页面上有一个词缀部分,它与窗口顶部保持一定距离,
我想要的是,当页面滚动时,它也会滚动,但当它触摸窗口的顶部时,它将固定在该位置
我使用了data-spy="affix"
,但它没有成功,这里是demo
我怎样才能做到这一点?
答案 0 :(得分:0)
检查出来:http://jsfiddle.net/panchroma/v9xqw/4/
我编辑了这一行
<div class="demo" data-spy="affix" data-offset-top="260"></div> <!-- data-offset-top is the distance you need to scroll before the demo div is affixed -->
并将其添加到您的CSS
.demo.affix
{ /* specify what you want to happen when the demo div is affixed */
top:0;
}
希望能帮到你!