retyui / react-quick-pinch-zoom

A react component that providing multi-touch gestures for zooming and dragging on any DOM element.
https://react-quick-pinch-zoom.netlify.app/
308 stars 46 forks source link

Zooming on wheel without pressing any key #59

Closed cojoclaudiu closed 1 year ago

cojoclaudiu commented 1 year ago

Hello, is there any posibility to zoom on wheel without pressing any key?

Thank you very much

retyui commented 1 year ago

yes

const alwaysFalse = ()=> false;
//...

<QuickPinchZoom onUpdate={onUpdate} shouldInterceptWheel={alwaysFalse}>

docs: shouldInterceptWheel?: (WheelEvent) => boolean

cojoclaudiu commented 1 year ago

Amazing @retyui Thank you very much