如何使用 jquery UI 进行反向调整大小?(放大而不是最小化,反之亦然)(需要在用户完成旋转后完成 - 它可以是任何度数)因为旋转 div 时没有考虑到
newItem 是一个 div。
newItem.resizable({
handles: {
'nw': '.nwgrip',
'ne': '.negrip',
'sw': '.swgrip',
'se': '.segrip'
},
aspectRatio: true,
resize: function( event, ui ) {
//Original size
var origWidth = ui.size.width;
var origHeight = ui.size.height;
//Fumbling in the dark... ...How do I do "reversed" resize?
//Tried this:
ui.helper.css("width", (origWidth - ui.helper.css("width") *-2) + "px");
ui.helper.css("height", (origHeight - ui.helper.css("height") *-2) + "px");
}
});