您好我有拖动元素的代码。
$(function() {
$(".ui-widget-content").draggable();
});

.draggable {
width: 125px;
}

<link rel="stylesheet" href="http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.8.3.js"></script>
<script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script>
<div class="draggable ui-widget-content">
<p>Drag me around</p>
</div>
<div class="draggable ui-widget-content">
<p>Drag me around</p>
</div>
&#13;
请参阅代码。
但是在这里我可以分别用类draggable拖动每个元素。但我想把这个元素拖到一起。那是一个元素被拖动,然后自动移动其他元素。如何做到这一点?
.rotatable()
可以调整jquery函数吗?