Sticky NavBar onScroll?

前端 未结 5 907
失恋的感觉
失恋的感觉 2021-01-06 11:06

I\'m currently building a site for myself, and I found this really awesome effect on multiple sites where the navbar is below an image, but when you scroll past it, it stick

5条回答
  •  佛祖请我去吃肉
    2021-01-06 11:39

    Here is what @Matthew was talking about:

    Check this fiddle http://jsfiddle.net/luckmattos/yp8HK/1/

    JQUERY

    var num = 200; //number of pixels before modifying styles
    
    $(window).bind('scroll', function () {
        if ($(window).scrollTop() > num) {
            $('.menu').addClass('fixed');
        } else {
            $('.menu').removeClass('fixed');
        }
    });
    

    Hope it helps, I used bootstrap navbar.

提交回复
热议问题