JQUERY:为什么我的导航栏在向下滚动时固定在顶部?

时间:2014-09-10 11:36:03

标签: javascript jquery html css

当您向下滚动100px时,我不会将导航栏固定到顶部。然后当向上滚动时,它会回到正常状态。

我设法让导航栏在滚动时变得固定和不固定但是它不在正确的位置。它固定在页面左侧,而不是在顶部,并向右浮动。

这是我在jsfiddle上制作的例子供你查看。

http://jsfiddle.net/edL5F/20/

       <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'});
    }
});

4 个答案:

答案 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%;
}

这里是小提琴:http://jsfiddle.net/yss9hz0v/

答案 1 :(得分:1)

因为.nav元素的css属性中有margin-top: 100px; ...

小提琴:http://jsfiddle.net/edL5F/24/

答案 2 :(得分:1)

当位置为float:right时,

fixed没有任何影响。因此,当您将元素设置为fixed位置时,您必须设置right:0px

最后,每次将元素位置从margin-top更改为fixedrelative0px时,您都必须更改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'});
    }
});

DEMO

答案 3 :(得分:1)

这是我的解决方案:

  1. 删除margin-top表单.nav
  2. padding-top:100px添加到#container
  3. 编辑jquery。
  4. 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。