onmousewheel
onmousewheel
by Fabian Allel
HTML
<div style="background-color:red;width;300px;height:800px;"></div>
JavaScript
document.onmousewheel=function(evento){
console.log(document.body.scrollTop);
evento.preventDefault();
return false;
};