jquery ui 克隆上的可拖动停止功能
我有 2 个列表,一个可拖动(#object),一个可排序(#target)。 我想将克隆拖到可排序列表中,然后在克隆进入可排序列表后对其执行一些操作。
我在 jsfiddle 上找到了一些东西: http://jsfiddle.net/d8nieldonaldson/smYeh/3/< /a>
这是一些代码:
$("#object li").draggable({
connectToSortable: "#target",
opacity: 0.5,
helper: "clone",
revert: "invalid",
stop: function(e , ui) {
ui.helper.css("width" , "140px");
}
});
任何帮助将不胜感激。
谢谢!
i have 2 lists, one draggable(#object) and one sortable(#target).
i would like to drag a clone to the sortable list and then do some things to the clone once it is in the sortable list.
i've got something up on jsfiddle: http://jsfiddle.net/d8nieldonaldson/smYeh/3/
here's some of the code:
$("#object li").draggable({
connectToSortable: "#target",
opacity: 0.5,
helper: "clone",
revert: "invalid",
stop: function(e , ui) {
ui.helper.css("width" , "140px");
}
});
any help would be greatly appreciated.
thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在调整
li
元素的大小,而不是img
!不管怎样,即使这样做也会调整助手的大小(使用
stop
),但是当将元素插入列表时,它会返回到原始状态,所以我修改了代码并向更好的用户添加了动画经验;-):示例链接。
You are resizing the
li
element and not theimg
!Anyway, even doing so will resize the helper (using
stop
) but when inserted the element to the list it'll return to the original, so I've modified the code and added animate to a better user experience ;-) :Example link.