在這個引導主題中,當你向下滾動並在我的JsFiddle中時,導航欄更改大小我嘗試重新創建,但出於多次嘗試失敗和放棄。我在一旁看着的堆棧溢出問題和其他的網頁很多,也許我的關鍵字是錯誤或東西,但我沒有找到我要找的linkss低於Navbar在頁面頂部改變大小
,因爲這個網站想要一些代碼生病後,但如果你們會發布的jsfiddle鏈接,我會perfer ..
CSS
body {
padding: 0;
/* Gets rid of the automatic padding */
margin: 0;
/* on HTML documents */
font-family: Lucida Grande, Helvetica, Arial, sans-serif;
font-size: 12px;
}
#navigation {
position: fixed;
top: 0;
width: 100%;
color: #ffffff;
height: 35px;
text-align: center;
padding-top: 15px;
/* Adds shadow to the bottom of the bar */
-webkit-box-shadow: 0px 0px 8px 0px #000000;
-moz-box-shadow: 0px 0px 8px 0px #000000;
box-shadow: 0px 0px 8px 0px #000000;
/* Adds the transparent background */
background-color: rgba(1, 1, 1, 0.8);
color: rgba(1, 1, 1, 0.8);
}
#navigation a {
font-size: 14px;
padding-left: 15px;
padding-right: 15px;
color: white;
text-decoration: none;
}
#navigation a:hover {
color: grey;
}
/* This just adds some style to the placeholder text */
#content {
width: 600px;
padding-top: 70px;
padding-bottom: 30px;
margin-left: auto;
margin-right: auto;
{
HTML
<div id="navigation">
<a href="#">Home</a>
<a href="#">Portfolio</a>
<a href="#">Our Apps</a>
<a href="#">Support</a>
<a href="#">Press</a>
<a href="#">About</a>
</div>
這裏有另一種方法:http://stackoverflow.com/questions/6713324/how-to-shrink-navigation-menu-when-scrolling-down – toast
非常感謝這是我在找什麼:) – user3079663