Last active
April 10, 2023 11:13
-
-
Save FelixLuciano/aee75b72d655f72b8d729615861d0147 to your computer and use it in GitHub Desktop.
Horizontal scrolling
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const target = document.querySelector('div') | |
target.addEventListener('wheel', event => { | |
const toLeft = event.deltaY < 0 && target.scrollLeft > 0 | |
const toRight = event.deltaY > 0 && target.scrollLeft < target.scrollWidth - target.clientWidth | |
if (toLeft || toRight) { | |
event.preventDefault() | |
event.stopPropagation() | |
target.scrollLeft += event.deltaY | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment