Created
May 22, 2025 07:50
-
-
Save Kcko/df3116ff24055cf4b03556634c80dc9d to your computer and use it in GitHub Desktop.
This file contains hidden or 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 eventHandler = e => { | |
const keyActions = { | |
Escape: closeGallery, | |
ArrowLeft: prevMedia, | |
ArrowRight: nextMedia | |
} | |
if (e.key === 'ArrowLeft') { | |
prevMedia() | |
} | |
if (e.key === 'ArrowRight') { | |
nextMedia() | |
} | |
} | |
const eventHandler = e => { | |
const keyActions = { | |
Escape: closeGallery, | |
ArrowLeft: prevMedia, | |
ArrowRight: nextMedia | |
} | |
keyActions[e.key]?.() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment