I have a button that allows me to rotate the image using CSS:
$theImage.css({
"-webkit-transform": "rotate(" + rotation + ")",
"-moz-transform": "rotate(" + rotation + ")",
"transform": "rotate(" + rotation + ")"
});
How can I use zoom, so it sooms on the rotated image, not the original one?
I have a button that allows me to rotate the image using CSS: $theImage.css({ "-webkit-transform": "rotate(" + rotation + ")", "-moz-transform": "rotate(" + rotation + ")", "transform": "rotate(" + rotation + ")" });
How can I use zoom, so it sooms on the rotated image, not the original one?