【发布时间】:2014-04-17 04:20:15
【问题描述】:
当用户滚动时,我正在尝试将较小版本的网站徽标添加到 Bootstrap 的附加导航栏。
这是我的site。
这就是我目前为止一直在做的事情...我尝试使用较小的徽标添加到 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
【问题讨论】:
标签: twitter-bootstrap nav affix