퍼블리싱/JS & JQ
스크롤 막기 JQ
Slyeee
2018. 11. 9. 15:41
스크롤 막는 스크립트
1 2 3 4 5 | $('선택자').on('scroll touchmove mousewheel', function(event) { event.preventDefault(); event.stopPropagation(); return false; }); | cs |
해제
1 | $('선택자').off('scroll touchmove mousewheel'); | cs |
위의 방법은 스크롤 이벤트를 꺼버린다.
다른 스크롤을 이용하는 다른 이벤트가 있다면 아래의 다른 방법을 사용
다른 방법
1 2 3 4 5 6 | // 스크롤 막기 $('html, body').css({'overflow': 'hidden', 'height': '100%'}); // 해제 $('html, body').css({'overflow': 'auto', 'height': 'auto'}); | cs |