我怎样才能让 jQuery 可排序元素不仅放在其他可排序元素周围,而且还放在其他元素本身之上?
例如,我在可排序列表中有图像,我想排列它们。但是,我还希望能够将它们堆叠起来,而不仅仅是排列顺序。我该怎么做?
谢谢。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要解决这个问题,只需将可排序元素的 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 :)