使用边距居中的可排序元素:0 排序时自动对齐到左侧
我有一个可排序的 Jquery UI,其中可排序框使用 margin: 0 auto
位于其容器的中心。
我在可排序中使用 axis: 'y' 设置,以便框只能垂直移动。
排序时,拖动的框移动到容器的左侧
使用draggable with axis: y不会导致这个问题,它似乎与sortable widget有关。
我在这个 jsfiddle 中复制了该错误。有什么想法吗?
I have a Jquery UI sortable where the sortable boxes are centered in their container using margin: 0 auto
.
I use the axis: 'y'
setting in the sortable so that the boxes can only move vertically.
While sorting, the dragged box moves to the left of the container
Using draggable with axis: y
does not cause this problem, it seems to be related to sortable widget.
I replicated the bug in this jsfiddle. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题是,jQuery UI 在拖动时应用
position:absolute
- 导致元素位于top:0
,left:0
处最近定位的元素,或窗口。解决此问题的一种选择是使用自定义定位帮助器进行拖动
helper< /代码>选项
。您可以使用 jquery UI
position()
实用方法轻松定位helper 相对于原始元素如下:The issue is that, jQuery UI applies
position:absolute
upon dragging - Causing the element to be positioned attop:0
,left:0
of closest positioned element, or the window.One option to fix this issue is to use a custom positioned helper for dragging using the
helper
option. You can make use of the jquery UIposition()
utility method for easily positioning the helper relative to the original element as follows: