티스토리 뷰
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');
}
});
}
})
'WebPublisher > JavaScript & jQuery' 카테고리의 다른 글
[javaScript] daterangepicker (0) | 2022.11.11 |
---|---|
[jQuery] 더보기 버튼 load more (0) | 2022.11.11 |
[jQuery] split 활용해 한 페이지에서 url 다르게 tab 링크 설정 (0) | 2022.08.18 |
[javaScript] 이미지맵 반응형으로 적용 (rwdImageMaps) (0) | 2022.08.01 |
[JavaScript] 페이지 자동 인쇄하기 (auto print) (0) | 2022.07.27 |
공지사항