我试图在使用 jquery ui resizeable 时考虑缩放元素的影响。
这里有一些关于调整大小/拖动的 css3 转换问题的帖子......我发现没有一个可以提供成功的解决方案。
我暂时搁置轮换问题。只是希望它与规模一起工作。
我设法修改了可拖动的,但在调整大小时遇到了问题。例子:
HTML
<div id= 'div1'>
resize the div and note that 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();