티스토리 뷰
let prevScrollpose = window.pageYOffset;
window.addEventListener("scroll", function() {
let currentScrollPose = window.pageYOffset;
if (prevScrollpose > currentScrollPose) {
document.getElementById("bnr_btm").style.bottom = "60px"; // 스크롤 올릴 때
} else {
document.getElementById("bnr_btm").style.bottom = "0px"; // 스크롤 내릴 때
}
prevScrollpose = currentScrollPose;
});
}
'WebPublisher > JavaScript & jQuery' 카테고리의 다른 글
[javaScript] jQuery로 modal 창 띄우기 (0) | 2024.11.08 |
---|---|
[javaScript] swiper for auto play on tab menu (0) | 2024.10.31 |
[js] snow falling effect (0) | 2024.08.29 |
[jQuery] lyrics auto count animation (0) | 2024.08.29 |
[jQuery] navigation position sticky scroll event (0) | 2024.08.29 |
공지사항