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>