Skip to content
Advertisement

Javascript zoom in/out to mouse x/y coordinates

I managed to make the mouse dragging to scroll the div, but the zooming in/out with the mouse is not complete.

It works, but I would like for the mouse pointer to hold the image in that position and scale it at the same time, like so:

Screenshot

I need to use scrollBy() to return the scrolling back to the previous point before scaling. Anyone knows how to do that?

This is a fiddle made by someone https://jsfiddle.net/xta2ccdt/13/ and it’s exactly what I need, but the code uses translate() and other things which don’t apply here, since I have scrolling/dragging too.

Here’s my jsfiddle code https://jsfiddle.net/catalinu/1f6e0jna/

And here’s the code in stackoverflow:

Please help. I struggled with this for days.

JavaScript
JavaScript
JavaScript

Advertisement

Answer

You issue is mostly around the below lines

JavaScript

The way scroll with scale works like below

  • Calculate the unscaled x, y coordinate where zoom happens
  • Calculate the new scaled x, y coordinate my multiplying it with the new scale
  • Now you want this new coordinate remain at the same place where the existing coordinate was. So basically if you subtract the offset x,y from the new scaled x,y, you get the scroll left and top.

The updated code is like below

JavaScript

The updated fiddle is

https://jsfiddle.net/uy390v8t/1/

Results

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement