본문 바로가기
코드 간편모음

스크롤 제어

by 찬찬2 2022. 3. 2.

$(스크롤을 막아야하는 영역).on('scroll touchmove mousewheel', function(e){

e.preventDefault();

e.stopPropagation(); 

return false;

})

 

$(스크롤을 막아야하는 영역).off('scroll touchmove mousewheel'); 

 

댓글