ngx-panzoom
ngx-panzoom copied to clipboard
Scroll zoom also scrolls the page
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 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.
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.