我有一个宽度为80%的导航,当我滚动页面时,在某个时间点我将标题固定在顶部,当我这样做时,它浮动到左边而不是停留在中间。如何将导航保持在中心并固定在顶部。
HTML
<div id="foo">
</div>
<div id="nav">
</div>
<div id="bar">
</div>
CSS
#foo{
height:100px;
width:100%;
}
#bar{
height:1000px;
width:100%;
}
#nav{
width: 80%;
height: 100px;
margin: 0 auto;
background-color: #FFCC00;
}
.fixed-nav{
position: fixed;
top: 0;
}
脚本
var bottom = $('#nav').offset().top;
$(window).scroll(function(){
if ($(this).scrollTop() > bottom){
$('#nav').addClass('fixed-nav');
}
else{
$('#nav').removeClass('fixed-nav');
}
});
以下是jsfiddle
中的代码