我试图将“模板”(最初是克隆)从“商店”拖到可放置的插槽中。之后,我希望能够将拖动的项目放到我想要的任何插槽中。可拖动对象设置如下:
$( ".template" ).draggable({
helper: "clone",
}
);
$( ".item" ).draggable();
我解决了重新克隆事物的问题,方法是在首次放置时以及在drop函数中从克隆切换为直线元素的过程中,将“ template”类替换为“ item”类,
$( ".template-slot" ).droppable({
accept: ".template, .item",
drop: function( event, ui ) {
if(ui.draggable.hasClass("template")) {
$(this).append(ui.draggable.clone())
// add item class
$(".template-slot .template").addClass("item");
// remove template class
$(".item").removeClass("ui-draggable template");
// expand to fit the slot
$(".item").addClass("expand-to-slot");
// make it draggable again
$(".item").draggable();
}
if(ui.draggable.hasClass("item")) {
$(this).append(ui.draggable);
}
}
});
第一次拖放就可以了。问题出现在第二次拖放上。元素可以拖动,但是放下时它在我拖动的任何方向上的放置距离都是两倍。因此,例如,如果我将其向右拖动50px,则向右拖动100px。上下等都一样。
我怀疑这与偏移量的累积有关,但尚未弄清为什么要这样做或如何解决。
我在这里创建了一个小提琴:https://jsfiddle.net/stefem1969/a86jmnxu/10/以显示问题。
希望有人可以提供帮助。
答案 0 :(得分:1)
工作示例:https://jsfiddle.net/Twisty/fu83zq2y/11/
JavaScript
$(function() {
function makeDrag(obj, opt) {
if (obj.hasClass("ui-draggable")) {
obj.removeClass("ui-draggable");
obj.attr("style", "");
}
if (opt === undefined) {
opt = {};
}
obj.draggable(opt);
}
makeDrag($(".template, .item"), {
helper: "clone",
});
$(".template-slot").droppable({
accept: ".template, .item",
drop: function(event, ui) {
if (ui.draggable.hasClass("template")) {
console.log("it has the template class!");
var newItem = ui.draggable.clone();
newItem.toggleClass("template item");
newItem.addClass("expand-to-slot");
newItem.appendTo($(this));
makeDrag(newItem);
}
if (ui.draggable.hasClass("item")) {
console.log("it has the item class!")
var droppableOffset = $(this).offset();
console.log("droppableOffset: ", droppableOffset);
ui.draggable.attr("style", "").appendTo($(this));
}
}
});
$(".template-store, .thagomizer").droppable({
accept: ".item",
drop: function(event, ui) {
ui.draggable.remove();
}
});
});
可拖动的一部分是在移动时设置top
和left
。即使将项目附加到另一个元素,它也仍然具有那些。清除可以帮助您完成所需的工作。
makeDrag()
仅有助于大量执行相同的操作。
希望这会有所帮助。