I need to ZOOM AND PAN a div element with CSS3
with the ability to mix zoom and pan,
so you could e.g. zoom-in, pan, zoom-in some more, pan, zoom-out etc.
ZOOMING has been SOLVED in this tread:
CSS3 zooming on mouse cursor
with an absolutely BRILLIANT answer! here:
CSS3 zooming on mouse cursor
Now the question is: How to combine PANNING with the ZOOMING (from the answer above) ?
So far, I tried using jQuery UI draggable http://jqueryui.com/draggable/ like this:
<div id="graphics">
$("#graphics").draggable();
$("#graphics").draggable('enable');
but it "jumps" when I start dragging the image when it is zoomed-in.
I think a good answer to this could help quite a few people as this is quite basic functionality and yet there is no solution for it on the web that I could find after quite extensive search!