반응형
#모든 터치 및 마우스 이벤트 제거
$('html, body').css({'overflow': 'hidden', 'height': '100%'});
$('#element').on('scroll touchmove mousewheel', function(event) {
event.preventDefault();
event.stopPropagation();
return false;
});
#스크롤 이동 허용
$('#element').off('scroll touchmove mousewheel');
*의도한 콘텐츠를 다 못보여주는 경우, 동적으로 변하는 웹사이트를 보여주기 위해 사용자의 스크롤 이동을 강제하는 것이 필요한 경우 사용
728x90
반응형
'JS & jQuery' 카테고리의 다른 글
top 버튼& down 버튼 (0) | 2022.01.17 |
---|---|
즐겨찾기 (0) | 2022.01.17 |
체크박스 (0) | 2022.01.17 |
앵커태그(anchor tag) (0) | 2022.01.14 |
숫자 up_down (0) | 2022.01.14 |