Shrinking Bootstrap Navbar with logo on scroll

痴心易碎 提交于 2019-12-23 03:07:02

问题


I need the fixed navbar to shrink 50% when it starts scrolling.

I have seen just text navbars, but nothing with a logo. Any help would be much appreciated.

http://carpetliquidators.com/demo/

You can pull the css and html from there.


回答1:


This can be accomplished by using jQuery and a custom CSS class, like so:

$(window).scroll(function() {
    if ($(document).scrollTop() > 150) {
        $('.navbar').addClass('shrink');
    }
    else {
        $('.navbar').removeClass('shrink');
    }
});


来源:https://stackoverflow.com/questions/27050763/shrinking-bootstrap-navbar-with-logo-on-scroll

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!