2013-01-04 34 views
0

我頁面上的詞綴組成部分,它保持一些距離窗口的頂部,Twitter的引導:將粘貼部分不能滾動

我要的是,當頁面滾動,它會太滾動,但當它接觸到窗口的左上角,這將固定在那個位置

我使用data-spy="affix",但它簡化版,succss,這裏是demo

我怎樣才能做到這一點?

回答

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

。希望做的伎倆爲您服務!