728x90
반응형
var beforePosition = document.documentElement.scrollTop
document.addEventListener('scroll', function() {
var afterPosition = document.documentElement.scrollTop;
if (afterPosition > 50) {
if(beforePosition < afterPosition ){
// 스크롤 위로
} else {
// 스크롤 아래로
}
} else {
// 평상 시
}
beforePosition = afterPosition;
});
반응형
댓글