fullpage.js 팝업시 바디 스크롤 막기

김종민·2025년 7월 24일
0

js

목록 보기
27/27
post-thumbnail
$('.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');
});
profile
웹 퍼블리셔의 코딩 일기

0개의 댓글