ngx-panzoom icon indicating copy to clipboard operation
ngx-panzoom copied to clipboard

Scroll zoom also scrolls the page

Open es-kan opened this issue 4 years ago • 2 comments

Whenever I scroll to zoom out, the page with my pan-zoom component also scrolls down! Is there a way to disable page scroll while I'm using the scroll wheel to zoom?

es-kan avatar Sep 07 '20 09:09 es-kan

@es-kan I encountered the same problem. A quick fix would be if you create a click listener which will set the body.style.overflow = 'hidden'; And a blur listener which will set it back to auto.

davidmarogy avatar Sep 07 '20 13:09 davidmarogy

Unfortunately, this is causing the body to remove the scroll and the page is jumping because it is losing padding on the right because of the missing scroll.

dydome avatar Feb 13 '24 12:02 dydome