我正在创建我想要多个div的布局,该div应该是可拖动且可调整大小的。
到目前为止,我已经尝试过
$(".draggable").draggable({
helper: "clone",
cursor: 'move'
});
$('.droppable').droppable({
accept: '.draggable',
drop: function(e, ui) {
$(ui.helper).clone(true).appendTo($(this));
}
});
$(function() {
$(".resizable").resizable();
});
.draggable {
width: 150px;
height: 150px;
padding: 0.5em;
}
.resizable {
width: 150px;
height: 150px;
padding: 0.5em;
}
.resizable h3 {
text-align: center;
margin: 0;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<div class="card-body droppable">
<div class="ui-widget-content resizable draggable">
<p>Drag me around</p>
</div>
</div>
我的代码给了我克隆的div,但是它们固定在一个我希望它们可拖动和可调整大小的位置。
感谢您的帮助。