我正在使用jsPlumb库来实现一个简单的接口,其中一个元素可以从工具箱中拖出并放到容器上。在这里,我有一个元素('partitiondrop'),需要同时重新调整大小和可拖动。但是,以下代码不允许调整分区大小。没有jsPlumb.draggable
,resize函数可以工作,但是一旦元素被删除,就无法拖动它。
drop: function (e, ui) {
var dropElem = ui.draggable.attr('class');
droppedElement = ui.helper.clone();
ui.helper.remove();
$(droppedElement).removeAttr("class");
$(droppedElement).draggable({containment: "container"});
jsPlumb.repaint(ui.helper);
var newAgent = $('<div>').attr('id', i).addClass('partitiondrop');
$(droppedElement).draggable({containment: "container"});
newAgent.css({
'top': e.pageY,
'left': e.pageX
});
$('#container').append(newAgent);
jsPlumb.draggable(newAgent, {
containment: 'parent'
});
$(newAgent).resizable({
resize : function(event, ui) {
jsPlumb.repaint(ui.helper);
}
});
}
分区的CSS
.partitiondrop {
border: 1px solid #346789;
resize: both;
overflow-x: hidden;
overflow-y: hidden;
...
z-index: 20;
position: absolute;
...
box-sizing: border-box;
}
对此方面的建议表示高度赞赏。
答案 0 :(得分:1)
您可以使用interact.js Javascript库。它提供了一个广泛的函数库,专门用于同时执行调整大小和拖动的方法。
interact('.resize-drag')
.draggable({
onmove: window.dragMoveListener
})
.resizable({
preserveAspectRatio: true,
edges: { left: true, right: true, bottom: true, top: true }
})
.on('resizemove', function (event) {
var target = event.target,
x = (parseFloat(target.getAttribute('data-x')) || 0),
y = (parseFloat(target.getAttribute('data-y')) || 0);
// update the element's style
target.style.width = event.rect.width + 'px';
target.style.height = event.rect.height + 'px';
// translate when resizing from top or left edges
x += event.deltaRect.left;
y += event.deltaRect.top;
target.style.webkitTransform = target.style.transform =
'translate(' + x + 'px,' + y + 'px)';
target.setAttribute('data-x', x);
target.setAttribute('data-y', y);
target.textContent = Math.round(event.rect.width) + '×' + Math.round(event.rect.height);
});