2013-07-29 59 views
-1

我們都已經看到了可摺疊頭部現在很多天。我非常喜歡它爲頁面帶來的效果,它給了更多的部門。 我想實現這個部分效果,但我並不需要固定頭部的功能。我可以讓我的固定標題滾動,可摺疊標題不再顯示在頁面上嗎?

現在我已經看到可摺疊標題完成了,只要可摺疊標題離開頁面,固定標題就會變小。 可摺疊標題離開頁面的那一刻,是否有可能使固定標題不再固定?並使其與其餘內容一起滾動頁面?

+0

我們需要一些代碼來處理...你在做什麼... –

+0

我還沒有寫代碼,但它會類似於[本教程](http://line25.com /wp-content/uploads/2013/header-effect/final-demo/index.html)。只有當圖像不在屏幕上時,我才希望標題開始滾動。 – user25312

+0

請在發佈問題前展示一些努力和初步研究... – lazyCrab

回答

0

我已經嘗試過了,我希望這是你想要的。點擊下面演示的鏈接..

Demo

這是HTML

<div id="headerSlideContainer"> 

    <div id="headerSlideContent"> 

     Header content goes here! 

    </div> 
    <div id="new"> 
     Other Contents 
    </div> 

</div> 

ñ在這裏不用CSS ...

#headerSlideContainer { 
    position: absolute; 

    top:0px; 
    width: 100%; 

    height:1000px; 
    background: black; 
} 
#headerSlideContent { 
    width: 900px; 
    height: 50px; 
    margin: 0 auto; 
    color: white; 
    background:Red; 
    z-index:10000; 
    position:fixed; 
} 

#new{ 
    top:60px; 
    z-index:2; 
    height:100px; 
    background:Orange; 
    position:absolute; 
    color: white; 

} 

n這是Javascript ..

$(function() { 

    var bar = $('#headerSlideContainer'); 
    var top = bar.css('top'); 
    $(window).scroll(function() { 

     if($(this).scrollTop() > 50) { 
      bar.stop().animate({'top' : '5px'}, 500); 
     } else { 
      bar.stop().animate({'top' : top}, 500); 
     } 
    }); 
}); 
+0

scrollTop()是我一直在尋找的。沒想到這是基本的jQuery功能。非常感謝! – user25312

+0

隨時..... :) –

相關問題