티스토리 뷰

CSS

.fixed{
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    background-color: #fff;
    padding-bottom: 0;
}

 

jQuery

$(document).ready(function(){
    if(wWidth < 1025){
        bannerSticky(70);
    }else{
        bannerSticky(100);
    }

    function bannerSticky(top){
        $(window).scroll(function(e){
            if($(window).scrollTop() + $(window).height() > $(document).height() - top){
                $('.sponsor-banner, #footer').removeClass('fixed');
            }else{
                $('.sponsor-banner, #footer').addClass('fixed');
            }
        });
    }
})