大家好,我想制作一个可拖动和调整大小的元素。出于某种原因,我想将元素定位在 div 父级内的某个位置。但我无法移动包含从另一个我想拖动的图像克隆的 ui-wrapper。总是 :
top:auto
left:auto
我尝试过这种模式:
newDiv = $(this).clone().appendTo('#space-drawable-div').resizable({
aspectRatio: true,
maxWidth: 212,
maxHeight: 220
}).parent('.ui-wrapper').draggable({
containment: "parent"
}).parent().removeAttr('style').css('top', '10px').css('left', '20px');
我有一个图像,它的父级是 'ui-wrapper'
ui 包装器 css:
height: 220px;
left: auto;
margin: 0;
overflow: hidden;
position: relative;
top: auto;
width: 157px;