Shrinking navigation bar when scrolling down (bootstrap3)

前端 未结 6 1708
离开以前
离开以前 2020-12-02 07:01

I would like to build a navigation-bar effect like it is on http://dootrix.com/ on my page (after scrolling down the bar getting smaller and the logo changes). Im using boot

6条回答
  •  悲&欢浪女
    2020-12-02 07:23

    toggleClass works too:

    $(window).on("scroll", function() {
        $("nav").toggleClass("shrink", $(this).scrollTop() > 50)
    });
    

提交回复
热议问题