Skip to content

Instantly share code, notes, and snippets.

@bramus
Created June 16, 2023 08:51
Show Gist options
  • Save bramus/9ed4ca9200e253b6be6133c1b1ba510c to your computer and use it in GitHub Desktop.
Save bramus/9ed4ca9200e253b6be6133c1b1ba510c to your computer and use it in GitHub Desktop.
vertical-to-horizontal-scroll.js
$scrollContainer.addEventListener('wheel', (e) => {
e.preventDefault();
$scrollContainer.scrollLeft += e.deltaY;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment