jQuery - 可拖动克隆上的拖放视觉反馈

发布于 2024-08-25 11:39:50 字数 207 浏览 8 评论 0原文

使用 droppable 提供反馈并不是一个好的选择,因为它们的嵌套结构很深(使用贪婪),所以我想通过更改可拖动(即克隆)来提供视觉反馈。

这可能吗?有人用 jQuery 做过这个吗?

我还没有看到任何例子,我不清楚如何实现它。我已经尝试过 over/out 事件,但这似乎不太正确,因为它们似乎在鼠标移动时被调用。

非常感谢任何建议,特别是草图示例。

Using droppable to provide feedback is not a good option due to their deeply nested structure (using greedy), so I would like to give visual feedback by changing the draggable (i.e., the clone).

Is this possible? Has anyone done this in jQuery?

I've not seen any examples and I'm unclear on how to achieve it. I've tried the over/out events, but that doesn't seem quite right as they seem get called on mouse move.

Any advice, particularly a sketched example, is much appreciated.

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

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

发布评论

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

评论(1

静待花开 2024-09-01 11:39:50

我重新审视了结束/结束事件并且有效:

over: function(event, ui) {
  c = ui.helper
  c.css('background-color', '#eeeeee')
},
out: function(event, ui) {
  c = ui.helper
  c.css('background-color', 'transparent')
},

I revisited over/out events and that worked:

over: function(event, ui) {
  c = ui.helper
  c.css('background-color', '#eeeeee')
},
out: function(event, ui) {
  c = ui.helper
  c.css('background-color', 'transparent')
},
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文