0

我在页面上有一个词缀部分,它与窗口顶部保持一定距离,

我想要的是,当页面滚动时,它也会滚动,但是当它触摸窗口的顶部时,它会固定在那个位置

我有使用data-spy="affix",但它没有成功,这是演示

我怎样才能做到这一点?

4

1 回答 1

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;
}

希望这对你有用!

于 2013-01-04T15:29:46.030 回答