Skip to content
On this page

제이쿼리 바텀 네비 펼침 숨김처리

js
$(window).scroll(function() {
    if($(window).scrollTop() + $(window).height() > $(document).height() - 200) {
        $('#bottomNav').hide();
    } else {
        $('#bottomNav').show();
    }
});

바텀으로 내려갈수록 숨김처리 올라가면 보임처리