滚动时,将菜单栏固定在顶部

时间:2012-11-07 17:06:06

标签: jquery css

我看过一些网站,当用户向下滚动页面时,会弹出一个右侧或左侧的框...

另外,注意到这个模板:http://www.mvpthemes.com/maxmag/设计师做得很好,导航栏固定在顶部。

现在,这些是如何完成的?我猜它使用jquery来获取页面的位置并显示框。

你能指导我到哪里可以找到一个片段,这样我就可以学习做类似的事情。

11 个答案:

答案 0 :(得分:149)

通常通过使用一些jquery逻辑来实现此效果:

$(window).bind('scroll', function () {
    if ($(window).scrollTop() > 50) {
        $('.menu').addClass('fixed');
    } else {
        $('.menu').removeClass('fixed');
    }
});

这表示一旦窗口滚动超过一定数量的垂直像素,它就会在菜单中添加一个类,将其位置值更改为“固定”。

有关完整的实施详情,请参阅:http://jsfiddle.net/adamb/F4BmP/

答案 1 :(得分:19)

在此示例中,您可以显示菜单居中。

HTML

<div id="main-menu-container">
    <div id="main-menu">
        //your menu
    </div>
</div>

CSS

.f-nav{  /* To fix main menu container */
    z-index: 9999;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
}
#main-menu-container {
    text-align: center; /* Assuming your main layout is centered */
}
#main-menu {
    display: inline-block;
    width: 1024px; /* Your menu's width */
}

JS

$("document").ready(function($){
    var nav = $('#main-menu-container');

    $(window).scroll(function () {
        if ($(this).scrollTop() > 125) {
            nav.addClass("f-nav");
        } else {
            nav.removeClass("f-nav");
        }
    });
});

答案 2 :(得分:15)

与adamb相同但我会添加动态变量num

num = $('.menuFlotante').offset().top;

获取窗口内的确切偏移或位置,以避免找到正确的位置。

 $(window).bind('scroll', function() {
         if ($(window).scrollTop() > num) {
             $('.menu').addClass('fixed');
         }
         else {
             num = $('.menuFlotante').offset().top;
             $('.menu').removeClass('fixed');
         }
    });

答案 3 :(得分:13)

您也可以使用css规则:

position: fixed ;top: 0px ;

菜单标签上的

答案 4 :(得分:4)

或者以更动态的方式做到这一点

$(window).bind('scroll', function () {
    var menu = $('.menu');
    if ($(window).scrollTop() > menu.offset().top) {
        menu.addClass('fixed');
    } else {
        menu.removeClass('fixed');
    }
});

在CSS中添加类

.fixed {
    position: fixed;
    top: 0;
}

答案 5 :(得分:3)

检查下面的链接,它有html,css,JS和现场演示:)享受

http://codepen.io/senff/pen/ayGvD

&#13;
&#13;
// Create a clone of the menu, right next to original.
$('.menu').addClass('original').clone().insertAfter('.menu').addClass('cloned').css('position','fixed').css('top','0').css('margin-top','0').css('z-index','500').removeClass('original').hide();

scrollIntervalID = setInterval(stickIt, 10);


function stickIt() {

  var orgElementPos = $('.original').offset();
  orgElementTop = orgElementPos.top;               

  if ($(window).scrollTop() >= (orgElementTop)) {
    // scrolled past the original position; now only show the cloned, sticky element.

    // Cloned element should always have same left position and width as original element.     
    orgElement = $('.original');
    coordsOrgElement = orgElement.offset();
    leftOrgElement = coordsOrgElement.left;  
    widthOrgElement = orgElement.css('width');

    $('.cloned').css('left',leftOrgElement+'px').css('top',0).css('width',widthOrgElement+'px').show();
    $('.original').css('visibility','hidden');
  } else {
    // not scrolled past the menu; only show the original menu.
    $('.cloned').hide();
    $('.original').css('visibility','visible');
  }
}
&#13;
* {font-family:arial; margin:0; padding:0;}
.logo {font-size:40px; font-weight:bold;color:#00a; font-style:italic;}
.intro {color:#777; font-style:italic; margin:10px 0;}
.menu {background:#00a; color:#fff; height:40px; line-height:40px;letter-spacing:1px; width:100%;}
.content {margin-top:10px;}
.menu-padding {padding-top:40px;}
.content {padding:10px;}
.content p {margin-bottom:20px;}
&#13;
<div class="intro">Some tagline goes here</div>
&#13;
&#13;
&#13;

答案 6 :(得分:3)

您可能想要添加:

 $(window).trigger('scroll') 

在重新加载已滚动的页面时触发滚动事件。否则你的菜单可能不合适。

$(document).ready(function(){
        $(window).trigger('scroll');
        $(window).bind('scroll', function () {
            var pixels = 600; //number of pixels before modifying styles
            if ($(window).scrollTop() > pixels) {
                $('header').addClass('fixed');
            } else {
                $('header').removeClass('fixed');
            }
        }); 
}); 

答案 7 :(得分:2)

这是jquery代码,用于在触及浏览器顶部时修复div,希望它能帮助很多。

<script type='text/javascript' src='http://code.jquery.com/jquery-1.7.1.js'></script>
<script type='text/javascript'>//<![CDATA[ 
$(window).load(function(){
$(function() {
    $.fn.scrollBottom = function() {
        return $(document).height() - this.scrollTop() - this.height();
    };

    var $el = $('#sidebar>div');
    var $window = $(window);
    var top = $el.parent().position().top;

    $window.bind("scroll resize", function() {
        var gap = $window.height() - $el.height() - 10;
        var visibleFoot = 172 - $window.scrollBottom();
        var scrollTop = $window.scrollTop()

        if (scrollTop < top + 10) {
            $el.css({
                top: (top - scrollTop) + "px",
                bottom: "auto"
            });
        } else if (visibleFoot > gap) {
            $el.css({
                top: "auto",
                bottom: visibleFoot + "px"
            });
        } else {
            $el.css({
                top: 0,
                bottom: "auto"
            });
        }
    }).scroll();
});
});//]]>  

</script>

答案 8 :(得分:1)

$(window).scroll(function () {

        var ControlDivTop = $('#cs_controlDivFix');

        $(window).scroll(function () {
            if ($(this).scrollTop() > 50) {
               ControlDivTop.stop().animate({ 'top': ($(this).scrollTop() - 62) + "px" }, 600);
            } else {
              ControlDivTop.stop().animate({ 'top': ($(this).scrollTop()) + "px" },600);
            }
        });
    });

答案 9 :(得分:1)

您可以使用导航div尝试此操作:

postion: fixed;
top: 0;
width: 100%;

答案 10 :(得分:1)

尝试使用粘性jquery插件

https://github.com/garand/sticky

with open('twit/example.json', encoding='utf8') as json_data:
    dataText = json.loads(line)

for a in dataText:
    print(dataText["user"]["location"])