click에 따른 마우스 휠 on off

by 조쉬 posted Mar 31, 2021
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄
tyle>
    body{height:1000px;}
</style>
스크롤 고정<input type="checkbox" id="element">
<script>
$('body').on({'mousewheel': function(e) {
if($('#element')[0].checked == true){
e.preventDefault();
e.stopPropagation();
}else{
return true;
}
}})
</script>