반응형
go_view 를 클릭하면 body 를 얼려버립니다
close를 클릭하면 다시 body가 풀어집니다
$('.go_view').click(function(){ |
$('.pop_up').stop().fadeIn(); |
// $('body').addClass('fixed'); |
$('body').on('scroll touchmove mousewheel', function(event) { |
event.preventDefault(); |
event.stopPropagation(); |
return false; |
}); |
}); |
$('.close').click(function(){ |
$('.pop_up').stop().fadeOut(); |
// $('body').removeClass('fixed'); |
$('body').off('scroll touchmove mousewheel'); |
}); |
반응형
'퍼블리셔일기' 카테고리의 다른 글
스와이퍼 버튼 누르면 비디오 멈추기 swiper video stop pause (0) | 2022.03.03 |
---|---|
button click selected option change 버튼 클릭시 옵션 체크 변경 (0) | 2021.10.27 |
이미지 첨부 미리보기 파일이미지 만들기 html,css, js (0) | 2021.03.04 |
css로만 텍스트 애니메이션 부드럽게 주기 슬라이드와함께 효과 (팁) (0) | 2021.02.03 |
반응형 헤더/메뉴 만들기 responsible header nav menu css html (0) | 2021.02.03 |