jQuery UI 恢复事件

发布于 2024-10-20 16:17:28 字数 125 浏览 6 评论 0原文

我正在寻找一种方法,一旦元素离开某个可放置元素,即可将其恢复到其原始大小和位置。

本质上,我所选择的图像可以拖到可放置区域并调整大小,但我希望能够通过将图像移出可放置区域来将图像“放回”原始位置。

谢谢!

I'm looking for a way to revert an element to its original size and position as soon as it leaves a certain droppable.

Essentially, what I have is selection of images that you can drag into a droppable area and resize, but I want to be able "put back" the images in their original locations by moving them off the droppable area.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

北座城市 2024-10-27 16:17:28

如果您进行以下操作,这是可能的:

$( "#droppable" ).droppable({
out: function(event, ui) {
$(ui.draggable).draggable({ revert: true });
var revert = $(ui.draggable).draggable( "option", "revert" );
$(ui.draggable).draggable( "option", "revert", true );
alert('out: '+$(ui.draggable).position().left);
}
});

坏消息是,在第二次移动之后,块被移动到其他地方而不是原来的位置。我只是被问及此页面上可能的解决方案。

多个块移动时拖动还原出现问题

that's possible if you make the following:

$( "#droppable" ).droppable({
out: function(event, ui) {
$(ui.draggable).draggable({ revert: true });
var revert = $(ui.draggable).draggable( "option", "revert" );
$(ui.draggable).draggable( "option", "revert", true );
alert('out: '+$(ui.draggable).position().left);
}
});

The bad news is that after the second movement, the block is moved somewhere else not to it original possition. I'm just asked about possible solutions on this page.

Trouble with dragged revert at multiple block movement

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文