JSFiddle - React, Tailwind, and code Playground
by fresheyeball
CSS
html{
background:teal;
width:100%;
height:100%;
}
JavaScript
$(function(){
$('html').on('mousewheel DOMMouseScroll MozMousePixelScroll', function(e){
alert('wheel');
});
});