Jquery ui 拖放 + .resizable
Jquery ui drag and drop + .resizable
我想添加 .resizable()
: https://jsfiddle.net/6aneLqu5/23/
问题就出在这里。我可以将图像拖到容器中。但不会像上面的 jsfiddle.net 演示那样改变。为了更好地理解,我附上了一个具有可调整大小功能的 jsfiddle。 http://jsfiddle.net/wJUHF/7/
考虑以下因素。
$(function() {
var resizeOpts = {
handles: "all",
autoHide: true,
};
function make_draggable(el, params) {
return $(el).draggable(params);
}
make_draggable(".dragImg", {
helper: "clone"
});
$("#dropHere").droppable({
accept: ".dragImg",
drop: function(e, ui) {
var dropItem = $(ui.helper).clone();
$(this).append(dropItem);
var newCount = $(".img", this).length;
dropItem.addClass("item-" + newCount);
$("img", dropItem).addClass("imgSize-" + newCount);
dropItem.removeClass("dragImg ui-draggable ui-draggable-dragging");
dropItem.dblclick(function() {
$(this).remove();
});
make_draggable(dropItem, {
containment: "parent"
});
$("img", dropItem).resizable(resizeOpts);
},
});
});
#dropHere {
width: 400px;
height: 400px;
border: dotted 1px black;
}
<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="dragImg"><img class="img" src="http://www.thumbshots.com/Portals/0/Images/Feature%20TS%201.jpg" /></div>
<div id="dropHere"></div>
这利用 jQuery 对象的 length
属性来提供项目的计数。
由于用户可以删除项目,因此可能会出现 ID 冲突。所以也许只使用你的柜台是个更好的主意。这是与该想法相同的示例。
$(function() {
var resizeOpts = {
handles: "all",
autoHide: true,
};
var count = 0;
function make_draggable(el, params) {
return $(el).draggable(params);
}
make_draggable(".dragImg", {
helper: "clone"
});
$("#dropHere").droppable({
accept: ".dragImg",
drop: function(e, ui) {
var dropItem = $(ui.helper).clone();
$(this).append(dropItem);
var newCount = ++count;
dropItem.addClass("item-" + newCount);
$("img", dropItem).replaceWith("<div class='img imgSize-" + newCount + " drag_elm'>Image " + newCount + "</div>");
dropItem.removeClass("dragImg ui-draggable ui-draggable-dragging");
dropItem.dblclick(function() {
$(this).remove();
});
make_draggable(dropItem, {
containment: "parent"
});
$(".img", dropItem).resizable(resizeOpts);
},
});
});
#dropHere {
width: 400px;
height: 400px;
border: dotted 1px black;
}
.drag_elm {
width: 80px;
height: 80px;
background: aqua;
border: 1px solid red;
}
<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="dragImg"><img class="img" src="http://www.thumbshots.com/Portals/0/Images/Feature%20TS%201.jpg" /></div>
<div id="dropHere"></div>
您可以将计数设置为 0
或 1
。它只是改变了你以后使用它的方式。使用 ++count
在使用它之前对其进行递增,或者将其分配给另一个变量。 count++
使用后会递增。
更新
添加到带有 .replaceWith()
的第二个代码段以将图像更改为 Div。
我想添加 .resizable()
: https://jsfiddle.net/6aneLqu5/23/
问题就出在这里。我可以将图像拖到容器中。但不会像上面的 jsfiddle.net 演示那样改变。为了更好地理解,我附上了一个具有可调整大小功能的 jsfiddle。 http://jsfiddle.net/wJUHF/7/
考虑以下因素。
$(function() {
var resizeOpts = {
handles: "all",
autoHide: true,
};
function make_draggable(el, params) {
return $(el).draggable(params);
}
make_draggable(".dragImg", {
helper: "clone"
});
$("#dropHere").droppable({
accept: ".dragImg",
drop: function(e, ui) {
var dropItem = $(ui.helper).clone();
$(this).append(dropItem);
var newCount = $(".img", this).length;
dropItem.addClass("item-" + newCount);
$("img", dropItem).addClass("imgSize-" + newCount);
dropItem.removeClass("dragImg ui-draggable ui-draggable-dragging");
dropItem.dblclick(function() {
$(this).remove();
});
make_draggable(dropItem, {
containment: "parent"
});
$("img", dropItem).resizable(resizeOpts);
},
});
});
#dropHere {
width: 400px;
height: 400px;
border: dotted 1px black;
}
<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="dragImg"><img class="img" src="http://www.thumbshots.com/Portals/0/Images/Feature%20TS%201.jpg" /></div>
<div id="dropHere"></div>
这利用 jQuery 对象的 length
属性来提供项目的计数。
由于用户可以删除项目,因此可能会出现 ID 冲突。所以也许只使用你的柜台是个更好的主意。这是与该想法相同的示例。
$(function() {
var resizeOpts = {
handles: "all",
autoHide: true,
};
var count = 0;
function make_draggable(el, params) {
return $(el).draggable(params);
}
make_draggable(".dragImg", {
helper: "clone"
});
$("#dropHere").droppable({
accept: ".dragImg",
drop: function(e, ui) {
var dropItem = $(ui.helper).clone();
$(this).append(dropItem);
var newCount = ++count;
dropItem.addClass("item-" + newCount);
$("img", dropItem).replaceWith("<div class='img imgSize-" + newCount + " drag_elm'>Image " + newCount + "</div>");
dropItem.removeClass("dragImg ui-draggable ui-draggable-dragging");
dropItem.dblclick(function() {
$(this).remove();
});
make_draggable(dropItem, {
containment: "parent"
});
$(".img", dropItem).resizable(resizeOpts);
},
});
});
#dropHere {
width: 400px;
height: 400px;
border: dotted 1px black;
}
.drag_elm {
width: 80px;
height: 80px;
background: aqua;
border: 1px solid red;
}
<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="dragImg"><img class="img" src="http://www.thumbshots.com/Portals/0/Images/Feature%20TS%201.jpg" /></div>
<div id="dropHere"></div>
您可以将计数设置为 0
或 1
。它只是改变了你以后使用它的方式。使用 ++count
在使用它之前对其进行递增,或者将其分配给另一个变量。 count++
使用后会递增。
更新
添加到带有 .replaceWith()
的第二个代码段以将图像更改为 Div。