当您向下滚动100px时,我不会将导航栏固定到顶部。然后当向上滚动时,它会回到正常状态。
我设法让导航栏在滚动时变得固定和不固定但是它不在正确的位置。它固定在页面左侧,而不是在顶部,并向右浮动。
这是我在jsfiddle上制作的例子供你查看。
<div id="wrapper">
<div id="codeback">
</div>
<div id="container">
<div class="nav">
</div>
<div id="wrap">
</div>
</div><!-- END OF CONTAINER -->
</div>
body{
background-color:black;
}
#wrapper{
width:100%;
height:inherit;
}
#codeback{
width:100%;
height:100%;
background-image:url('capture.jpg');
background-repeat: no-repeat;
position:fixed;
left:0px;
top:0px;
z-index:-1;
}
#container{
width:100%;
float:right;
}
.nav{
margin-top:100px;
width:80%;
height:50px;
float:right;
background-color:blue;
position:relative;
}
#wrap{
float:right;
width:80%;
height:1500px;
background-color:white;
}
$(window).scroll(function (e) {
$el = $('.nav');
if ($(this).scrollTop() > 100 && $el.css('position') != 'fixed') {
$('.nav').css({ 'position': 'fixed', 'top': '0'});
}
if ($(this).scrollTop() < 100 && $el.css('position') == 'fixed') {
$('.nav').css({ 'position': 'relative'});
}
});
答案 0 :(得分:2)
你可以用课轻松地做到这一点......
$(window).scroll(function (e) {
$el = $('.nav');
if ($(this).scrollTop() > 100) {
$('.nav').addClass("fixedNav");
}else {
$('.nav').removeClass("fixedNav");
}
});
.fixedNav {
position:fixed;
margin:0;
width:100%;
}
答案 1 :(得分:1)
因为.nav元素的css属性中有margin-top: 100px;
...
答案 2 :(得分:1)
float:right
时, fixed
没有任何影响。因此,当您将元素设置为fixed
位置时,您必须设置right:0px
。
最后,每次将元素位置从margin-top
更改为fixed
到relative
和0px
时,您都必须更改100px
分别
尝试:
$(window).scroll(function (e) {
$el = $('.nav');
if ($(this).scrollTop() > 100 && $el.css('position') != 'fixed') {
$('.nav').css({ 'position': 'fixed', 'top': '0','right':'0','margin-top':'0px'});
}
if ($(this).scrollTop() < 100 && $el.css('position') == 'fixed') {
$('.nav').css({ 'position': 'relative','margin-top':'100px'});
}
});
答案 3 :(得分:1)
这是我的解决方案:
margin-top
表单.nav
padding-top:100px
添加到#container
Jquery的:
$(window).scroll(function (e) {
$el = $('.nav');
if ($(this).scrollTop() > 100 && $el.css('position') != 'fixed') {
$('.nav').css({ 'position': 'fixed', 'top': '0','right':'0'});
}
if ($(this).scrollTop() < 100 && $el.css('position') == 'fixed') {
$('.nav').css({ 'position': 'relative','margin-top':'100px'});
}
});
这是fiddle。
说明:
right:0
是在修复后将.nav
附加到右侧。
填充更改的边距是在向上滚动时强制条形回到原始位置,而不编辑任何CSS。