我正在努力建立一个小谜题
没有必要使用我正在使用的lib
如果你尝试我的小提琴:http://jsfiddle.net/fskwbrbb/
你怎么能将Nr 3拖到“dropzone”的顶部,然后将Nr2,Nr1放在Nr1的一边?
------|
3 |
------|
----||---|
2 || 1 |
----||---|
答案 0 :(得分:0)
我已经使用了Jquery Shapeshift。
<强> JS 强>
//Create new container
$('#btnAddContainer').on('click', function () {
//Container HTML setup
var containerHtml = $('<div class="container"></div>');
//Insert continer
$('.containers').append(containerHtml);
//Shapeshift
$('.container').shapeshift({
enableDrag: true,
enableCrossDrop: true,
minColumns: 1
});
});
检查这个小提琴代码:
https://jsfiddle.net/umcgqmwv/2/