click event scroll

by 조쉬 posted Mar 31, 2021
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄

 

 

<?php

$('#card_1').click(function(){

$('#detail_1').toggle();

});

 

$('body').on({'mousewheel': function(e) {

if($('#detail_1').css('display') == "block"){

e.preventDefault();

e.stopPropagation();

}else{

return true;

}

}});

?>