我正在为我的客户端开发拖放功能。我已经实现了dragular的拖放功能,但是在dragular或任何其他提供拖放功能的库中没有提供多元素拖放功能。
请告诉我如何在angular或任何其他javascript库中选择和拖放多元素,这些元素也应该与触摸设备兼容。
提前感谢。
注意:我们可以在dragular中使用多重拖放吗?
更新(30/11/2016):增加一点我的要求。如何限制拖放区元素的冗余。
说明:
-
当我们从源中复制任何项目时,如果它已经放到目标容器中,我们将无法拖动它。
-
更确切地说,如果物品已经在目标容器中,我们可以将其设置为不可拖拽的
你的意思是多个单独的拖放?比如用一个手指拖拽一个元素,用另一个手指拖拽第二个元素?
不被dragula和dragular支持,但我正在开发一个新的库,但它现在仍在进行中:/
我不知道还有其他库支持它。
编辑(27.11.16):
我已经更新了你的笔http://codepen.io/luckylooke/pen/zodmEO
angular.module("testDnD", ["dragularModule"]).
controller("test", ['$scope', 'dragularService', function($scope, dragularService) {
$scope.selected = [];
$scope.filter = [];
$scope.testObj = [{...}];
$scope.modelClickData = function(test) {
console.log(test);
$scope.popdata = test;
};
$scope.modelSelect = function(test) {
test.selected = !test.selected;
if (test.selected)
$scope.selected.push(test);
else
$scope.selected.splice($scope.selected.indexOf(test), 1);
// console.log('selected', test);
};
var containerLeft = document.querySelector('#thumbnailTST');
var containerRight = document.querySelector('#filler');
dragularService.cleanEnviroment();
dragularService([containerLeft, containerRight], {
copy: true,
containersModel: [$scope.testObj, $scope.filter],
scope: $scope
});
$scope.$on('dragularcloned', function() {
var mirror = $('.gu-mirror');
if ($scope.selected.length > 1 && mirror.length) { // is multiple drag
mirror.addClass('multipledrag');
}
});
$scope.$on('dragulardrop', function(e, el, targetcontainer, sourcecontainer, conmodel, elindex, targetmodel, dropindex) {
if ($scope.selected.length > 1) { // is multiple drag
$scope.selected.forEach(function(item) {
if (item != $scope.testObj[elindex]) {
var clone = {};
clone = $.extend(true, clone, item);
delete clone.$$hashKey;
$scope.filter.splice(++dropindex, 0, clone);
}
});
}
console.log($scope.filter);
});
}])
这就是你问题的答案。jQuery Sortable -选择和拖动多个列表项
我认为使用jQuery进行拖放是一个好主意。我在用这个,而且很有效。这里是example
jsfiddle.net/hQnWG/614/