infinite-viewer
infinite-viewer copied to clipboard
Question: How to prevent scroll from keyboard?
Hi, I wanted to move an element with the keyboard but it affects the infinite scroll. I was wondering how to prevent the infinite scroll to moved while clicking up/down/left/right on the keyboard?
Thanks
@ryantando
It must be blocked through an external key manager.
InfiniteViewer does not block events separately.
document.body.addEventListener("keydown", e => {
// move key
e. preventDefault();
});