Hi,
1. my draggable image works fine on a DIV
2. the CSS3 scale(2.0) call works fine too as a zoom factor
and makes my DIV and all elements on my DIV bigger
(like a maginifier glass)
javascript code to set the scale factor:
selector.css("transform","scale(2)").css("-moz-transform","scale(2)").css("-webkit-transform","scale(2)");
3. my draggable image works now a little incorrect on the scaled DIV:
the drag of the dragged image will be calculated with a wrong positioning
Is there a solution for this HTML5 scaling question?
Ciao