当用户滚动时,我正在尝试将较小版本的网站徽标添加到 Bootstrap 的附加导航栏。
这是我的网站。
到目前为止,这就是我一直在做的事情......我尝试使用较小的徽标添加到 nav.affix,但它没有奏效。我在正确的道路上吗?
#nav.affix {
position: fixed;
top: 0;
width: 100%;
z-index:10;
background: rgb(255, 255, 255) transparent;
background: rgba(255, 255, 255, 0.8);
}
#nav #nav-img {
background-image:url(http://static.tumblr.com/bw1wxme/rOYn2c6na/logo-small.jpg);
}
#nav.affix #nav-img {
display:inline-block;
}
#sidebar.affix-top {
position: static;
}
#sidebar.affix {
position: fixed;
top: 180px;
}
这是JSfiddle