绑定时使用grid: [90, 83]
可使元素仅在指定的网格中移动。我试图使其自由移动(因为未设置grid
),然后,当用户停止拖动元素时,将其放置在网格中。
例如,在Android智能手机上,当您对主屏幕上的图标重新排序时,可以将它们拖动到任意位置,并在释放后将其固定在网格上。
到目前为止,我尝试了以下JS代码:
$(".home-item.desktop-icon:last-child").draggable({
//grid: [90, 83],
containment: "parent",
stop: function (event, ui) {
y = ui.position.top,
x = ui.position.left,
_this = this;
if ((x - 10)%83 >= 42) {
posX(x-(x%83) + 93);
}
else {
posX(x-(x%83) + 10);
}
if ((y - 10)%90 >= 45) {
posY(y-(y%90) + 100);
}
else {
posX(y-(y%90) + 10);
}
function posX (f) {
$(_this).css("top", f + "px");
}
function posY (f) {
$(_this).css("left", y + "px");
}
}
});
不知道为什么,这根本不起作用。我该怎么办?
答案 0 :(得分:1)
这是一个基于我的评论的例子。
$(function() {
$(".draggable").draggable({
containment: "parent"
});
$("#snaptarget").droppable({
accept: ".draggable",
drop: function(e, ui) {
var cPPos = ui.position;
var cOPos = ui.offset;
var cPosOff = {
top: Math.round(cOPos.top) % 90,
left: Math.round(cOPos.left) % 83
};
var sPos = {
top: Math.round(cOPos.top),
left: Math.round(cOPos.left)
};
console.log("Dropped", cPPos, cOPos, cPosOff, sPos);
var $item = ui.draggable;
if (cPosOff.top > 0 && cPosOff.top < 70) {
sPos.top = sPos.top - cPosOff.top;
console.log("DROP - TOP: " + cOPos.top + " lower to " + sPos.top);
} else {
sPos.top = sPos.top + (90 - cPosOff.top);
console.log("DROP - TOP: " + cOPos.top + " rise to " + sPos.top);
}
if (cPosOff.left > 0 && cPosOff.left < 61) {
sPos.left = sPos.left - cPosOff.left;
console.log("DROP - LEFT: " + cOPos.left + " left to " + sPos.left);
} else {
sPos.left = sPos.left + (83 - cPosOff.left);
console.log("DROP - LEFT: " + cOPos.left + " right to " + sPos.left);
}
$item.appendTo($(this)).css({
margin: 0,
position: "absolute",
top: sPos.top + "px",
left: sPos.left + "px"
});
}
});
});
.drag-area {
min-height: 300px;
}
.draggable {
width: 80px;
height: 80px;
display: inline-block;
margin: 0 10px 10px 0;
font-size: .9em;
}
.ui-widget-header p,
.ui-widget-content p {
margin: 0;
}
#snaptarget {
height: 173px;
position: relative;
}
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<div class="drag-area">
<div id="snaptarget" class="ui-widget-header">
</div>
<br style="clear:both">
<div id="draggable" class="draggable ui-widget-content">
<p>A</p>
</div>
<div id="draggable2" class="draggable ui-widget-content">
<p>B</p>
</div>
<div id="draggable3" class="draggable ui-widget-content">
<p>C</p>
</div>
<div id="draggable4" class="draggable ui-widget-content">
<p>D</p>
</div>
<div id="draggable5" class="draggable ui-widget-content">
<p>E</p>
</div>
</div>
我还没有整理一些东西,因此您可以在Console中获得更多反馈。拖动时,您需要更完整的运动范围,但是当用户放下该项目时,您希望它捕捉到一个位置。
最初,我打算忍耐50%,但发现这太贪婪了,所以我拍摄的忍耐率约为75%。例如,如果用户放下该项目,并且该项目的top,left
为{12, 140}
,则您可能希望它捕捉到{0,83}
。如果用户懒惰或不知道它会卡住,则可以将其拖到关闭位置,以达到下一个目标,我的代码将对右侧的下一个块具有约25%的容差。因此,如果它们落在{12,164}
处,它将滑动到更靠近{0,166}
的右侧块。
希望有帮助。