모달 팝업창 질문 채택완료
yooniiii
2년 전
조회 2,376
풀페이지js를 사용해서 작업 중인데 pc버전에서는 모달창이 떠있을 때 스크롤을 막았는데
모바일에서는 터치가 안 먹고 페이지가 스크롤이 되더라구요...
혹시 모바일 스크롤 막는법 아시는 분 계실까요...!
</p>
<p>$('.modal-custom-button').click(function(){</p>
<p> $('.pop_up').stop().fadeIn();</p>
<p> // $('body').addClass('fixed');</p>
<p> $('body').on('scroll touchmove mousewheel', function(event) {</p>
<p> event.preventDefault();</p>
<p> event.stopPropagation();</p>
<p> return false;</p>
<p> });</p>
<p> });</p>
<p> </p>
<p> $('.close-modal').click(function(){</p>
<p> $('.pop_up').stop().fadeOut();</p>
<p> // $('body').removeClass('fixed');</p>
<p> $('body').off('scroll touchmove mousewheel');</p>
<p> });</p>
<p>
이게 스크롤 막은 스크립트에요!
댓글을 작성하려면 로그인이 필요합니다.
답변 2개
답변을 작성하려면 로그인이 필요합니다.
로그인