I am currently working on factoring in the impact of scaling an element while utilizing jquery ui resizable.
Although there have been some discussions regarding css3 transform issues with resizing/dragging, I have not come across a solution that works effectively.
For now, I am putting the rotation problem on hold and focusing on getting it to function with scale.
I was able to make adjustments to the draggable feature, but I am encountering difficulties with the resizable functionality.
HTML
<div id= 'div1'>
resize the div and take note of how the mouse cursor's
distance from the resize handle increases over time
<div>
CSS
#div1{
margin:100px;
width:100px;
height:100px;
border:1px solid black;
font-size:12pt;
overflow:hidden;
-webkit-transform:scale(2);
}
JS
$('#div1').resizable();