Set Bootstrap navbar transparency on scroll

后端 未结 3 1506
挽巷
挽巷 2020-12-05 05:58

I use a secondary fille called custom.css to overwrite the bootstrap code and I would like to know how to create a code that is activating only when the visitor of my site i

3条回答
  •  囚心锁ツ
    2020-12-05 06:25

    $(document).ready(function() {
        $(window).scroll(function() {
           if($(this).scrollTop() > height) { 
               $('.navbar').addClass('scrolled');
           } else {
               $('.navbar').removeClass('scrolled');
           }
        });
    });
    

提交回复
热议问题