在触摸设备上拖动 html 元素时检测悬停

发布于 2024-12-10 20:52:24 字数 53 浏览 0 评论 0原文

当您使用触摸事件(触摸屏上的 DnD)拖动元素时,如何检测正在拖动的对象位于另一个对象之上?

When you are dragging an element using the touch events (DnD on touch screens), how do you detect that the object that you are dragging is over another object?

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

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

发布评论

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

评论(2

梅窗月明清似水 2024-12-17 20:52:24

使用 jQuery 很容易,在创建可拖动对象时添加“collide: 'block'”或“collide: 'flag'”。

http://plugins.jquery.com/project/collidable

With jQuery is easy, add "collide: 'block'" or "collide: 'flag'" when you create a draggable.

http://plugins.jquery.com/project/collidable

花开柳相依 2024-12-17 20:52:24

我还没有找到任何直接的解决方案。可以将可拖动元素放置在拖动手指的“外部”,但这在我的情况下不起作用。

就我而言,我有一个类似网格的元素,具有固定大小的子元素。因此,可以很容易地将 touchmove 的 pageX/pageY 与父元素进行比较,并通过将结果除以它们的尺寸来计算当前元素的索引。

I haven't found any direct solution for this. One can have draggable element positioned "outside" dragging finger, but this didn't work in my case.

In my case, I had a grid-like element with fixed size child elements. Therefore it was easy to compare pageX/pageY of touchmove to the parent element and count the current element index by dividing the result with their dimensions.

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