Skip to content
Advertisement

Move (drag/pan) and zoom object (image or div) in pure js

I’m working on a little script that makes an object (div or img) moveable and zoomable within a given frame.

However I came across a few problems I’m not really sure of, because I’m a javascript beginner – so explanation of why those problems occure would be appreciated.

Problems:

  1. Calling the functions start_drag(), while_drag() and stop_drag() returns undefined – why is that? What should be returned?
  2. The dragging and moving of the image does not work correctly – instead of clicking the mousebutton down and starting to move the image around, I have to click once and then start moving. Although I bound the mousedown event to the image. What did I do wrong?
  3. Why is the moving part not working on mobile (the zooming works!)?

Please see my fiddle: https://jsfiddle.net/pow4ngbw/15/

Advertisement

Answer

Working fine now, was mainly the image css but found several errors (see the new img attribute), also added a few tweaks to make the dragging smoother.

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