Heojju

[jQuery] click에 따른 마우스 휠 on off 본문

웹개발/jQuery

[jQuery] click에 따른 마우스 휠 on off

우주별 2017. 2. 7. 11:23
<style>
    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>