panzoom icon indicating copy to clipboard operation
panzoom copied to clipboard

Is it possible to enable smooth zooming when using mouse wheel?

Open SCLeoX opened this issue 3 years ago • 4 comments

SCLeoX avatar Jun 15 '21 07:06 SCLeoX

haven't found a solution for this. using transition may work but it would also affect the smooth panning

carljustineoyales avatar Nov 01 '21 08:11 carljustineoyales

I made it work by removing the smoothScroll for the pan

smoothScroll: false

then on the css side I added a transition

transition: transform 0.6s cubic-bezier(0, 0, 0.58, 1);

using the set values for the cubic-bezier found in the panzoom.js file. It may be clunky but you can just edit the transistion values

carljustineoyales avatar Nov 01 '21 08:11 carljustineoyales

Thanks, works like a charm.

netkin-paris avatar May 14 '22 17:05 netkin-paris

@carljustineoyales could you explain how the transition needs to be added to css in more detail?

13hannes11 avatar Sep 23 '22 10:09 13hannes11