Shrinking navigation bar when scrolling down (bootstrap3)

前端 未结 6 1705
离开以前
离开以前 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:13

    I am using this code for my project

    $(window).scroll ( function() {
        if ($(document).scrollTop() > 50) {
            document.getElementById('your-div').style.height = '100px'; //For eg
        } else {
            document.getElementById('your-div').style.height = '150px';
        }    
    }
    );
    

    Probably this will help

提交回复
热议问题