How can I make a fix positioned menu bar?

后端 未结 2 985
走了就别回头了
走了就别回头了 2021-01-13 23:57

I would like to style my menu bar Like THIS. It\'s fixed to the top of the site when you scroll down and it isn\'t fixed where it is when the page is loaded.

How ca

2条回答
  •  醉梦人生
    2021-01-14 00:26

    What you're after is a 'sticky navbar/menu'.

    The simplest way would be to add the below CSS to your menu/navbar

    position:fixed;
    top:0px;
    

    That said, for an effect closer to the one you've posted, you'll probably want to look at using some jQuery, e.g.:

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

    What this does is 'fix' the menu bar to the top of the page once you scroll past a certain point (e.g. 50px) by adding the CSS class 'fixed' to the .menu element, the fixed class would simply be e.g. the CSS above.

    There are some nice examples listed here.

提交回复
热议问题