If I set css property for scale, rotate to the canvas or it's parent, it doesn't calculate the position correctly.
// Rotate 30 Degrees $('#example').transform({rotate: '30deg'}); // Use CSS Hooks to Rotate $('#example').css({rotate: '30deg'}); // Animate the rotation $('#example ...