我怎样才能让 jQuery 可排序元素不仅放在其他可排序元素周围,而且还放在其他元素本身之上?

发布于 2024-11-16 19:04:34 字数 74 浏览 2 评论 0原文

例如,我在可排序列表中有图像,我想排列它们。但是,我还希望能够将它们堆叠起来,而不仅仅是排列顺序。我该怎么做?

谢谢。

For example, I have images in a sortable list, and I would like arrange them. However, I would also like the ability to stack them rather than just arranging the order. How can I do this?

Thank you.

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

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

发布评论

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

评论(1

绅刃 2024-11-23 19:04:34

要解决这个问题,只需将可排序元素的 z 索引设置为低于非拖动元素的 z 索引即可。然后在需要悬停以执行自定义操作的元素上绑定鼠标悬停事件。因此,由于非拖动项的 z-index 较高,因此 mouseover 事件将始终被触发。因此,将鼠标悬停事件放在可拖动对象的排序上:)

To solve this, simple have the z-index of the sortable below that of the non-dragged elements. Then bind a mouseover event on the elements that needs to be hovered for your custom actions. So because the z-index of the non-dragged items is higher, the mouseover event will always be triggered. So, hover events on sorting draggables :)

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