Skip to content

Instantly share code, notes, and snippets.

function handler (e) {
if (!e.currentTarget.classList.contains('vertical')) {
e.currentTarget.scrollBy({ top: 0, left: e.deltaY, behavior: 'auto' })
}
}
a = document.querySelector('.panel')
a.addEventListener('wheel', (e) => { handler(e) })