infinite-viewer icon indicating copy to clipboard operation
infinite-viewer copied to clipboard

Question: How to prevent scroll from keyboard?

Open ryantando opened this issue 2 years ago • 1 comments

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 avatar Dec 07 '22 02:12 ryantando

@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();
});

daybrush avatar Dec 07 '22 12:12 daybrush