使用边距居中的可排序元素:0 排序时自动对齐到左侧

发布于 2024-11-15 19:45:01 字数 305 浏览 3 评论 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 技术交流群。

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

发布评论

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

评论(1

梦旅人picnic 2024-11-22 19:45:01

问题是,jQuery UI 在拖动时应用 position:absolute - 导致元素位于 top:0, left:0 处最近定位的元素,或窗口。

解决此问题的一种选择是使用自定义定位帮助器进行拖动 helper< /代码>选项。您可以使用 jquery UI position() 实用方法轻松定位helper 相对于原始元素如下:

$('#container').sortable({
  axis: 'y',
  helper: function(event, elm) {
    return $(elm).clone().position({
      my: "left",
      at: "left",
      of: elm
    });
  }
});
* { /*for stack snippet demo*/
  margin: 0;
  padding: 0;
}
#container {
  width: 200px;
  text-align: center;
  height: 300px;
  border: 1px solid green;
  position: relative;
}
.draggable {
  width: 100px;
  height: 100px;
  background: yellow;
  margin: 10px auto;
  cursor: move;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script>
<div id="container">
  <div class="draggable"></div>
  <div class="draggable"></div>
</div>

The issue is that, jQuery UI applies position:absolute upon dragging - Causing the element to be positioned at top: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 UI position() utility method for easily positioning the helper relative to the original element as follows:

$('#container').sortable({
  axis: 'y',
  helper: function(event, elm) {
    return $(elm).clone().position({
      my: "left",
      at: "left",
      of: elm
    });
  }
});
* { /*for stack snippet demo*/
  margin: 0;
  padding: 0;
}
#container {
  width: 200px;
  text-align: center;
  height: 300px;
  border: 1px solid green;
  position: relative;
}
.draggable {
  width: 100px;
  height: 100px;
  background: yellow;
  margin: 10px auto;
  cursor: move;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script>
<div id="container">
  <div class="draggable"></div>
  <div class="draggable"></div>
</div>

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