Skip to content

Instantly share code, notes, and snippets.

@dav11d
Forked from vielhuber/script.js
Created January 21, 2018 21:11
Show Gist options
  • Save dav11d/64c193c94542b584eb26d54d44a43a5c to your computer and use it in GitHub Desktop.
Save dav11d/64c193c94542b584eb26d54d44a43a5c to your computer and use it in GitHub Desktop.
on mousewheel vanilla js scroll horizontally #js
document.addEventListener('wheel', function(e)
{
if(e.type != 'wheel')
{
return;
}
let delta = ((e.deltaY || -e.wheelDelta || e.detail) >> 10) || 1;
delta = delta * (-300);
document.documentElement.scrollLeft -= delta;
e.preventDefault();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment