admin管理员组文章数量:1344645
I have a draggable and droppable layout. I'm creating a draggable object when adding it from a typeahead search selection. However I have some "placement" issues. The size of the draggable object is much larger than the container it should be dropped in. This lead to some dropping issues.
I wan't to resize the element to half it's current size upon dragging start. How do I do this? The problem is not present in the fiddle unless the width
of .semester
is set to around 30%
.
Here's the JSFiddle
EDIT:
After having implemented @user619081 solution I wanted make this happen only if the object was very large. I made a global variable var tempWidth
and updated the code to the following:
start: function(event, ui) {
if(tempWidth < $(this).width()){
$(this).addClass("moveable");
}
tempWidth = $(this).width();
},
stop: function(event, ui) {
$(this).removeClass("moveable");
}
I have a draggable and droppable layout. I'm creating a draggable object when adding it from a typeahead search selection. However I have some "placement" issues. The size of the draggable object is much larger than the container it should be dropped in. This lead to some dropping issues.
I wan't to resize the element to half it's current size upon dragging start. How do I do this? The problem is not present in the fiddle unless the width
of .semester
is set to around 30%
.
Here's the JSFiddle
EDIT:
After having implemented @user619081 solution I wanted make this happen only if the object was very large. I made a global variable var tempWidth
and updated the code to the following:
start: function(event, ui) {
if(tempWidth < $(this).width()){
$(this).addClass("moveable");
}
tempWidth = $(this).width();
},
stop: function(event, ui) {
$(this).removeClass("moveable");
}
Share
Improve this question
edited Jun 20, 2020 at 9:12
CommunityBot
11 silver badge
asked May 12, 2016 at 10:09
ZeliaxZeliax
5,39613 gold badges55 silver badges79 bronze badges
3 Answers
Reset to default 9You need to hook into the drag start and drag stop events of the draggable widget.
Read more about them here:
- Drag start (start) - http://api.jqueryui./draggable/#event-start
- Drag stop (stop) - http://api.jqueryui./draggable/#event-stop
Now that you know how to use them, you can do something like this:
$(".courseBox").draggable({
revert: "invalid",
containment: "document",
cursor: "move",
start: function(event, ui) {
$(ui.helper).css('width', "50%");
},
stop: function(event, ui) {
$(ui.helper).css('width', "100%");
}
});
Please note that ui.helper holds the reference to the element that you are dragging, which is why you see it in the code.
Here's a working fiddle too.
You should look into ondragstart and ondragstop events. Look into ev.originalEvent.dataTransfer if you need to pass some info about original state of DOM element, such as original width or something else.
$(".courseBox").on('dragstart', function(ev) {
$(this).css('width', '50%');
});
$(".courseBox").on('dragstop', function(ev) {
$(this).css('width', '100%');
});
I have updated your fiddle just check it.
It is working with targeted width size
https://jsfiddle/8g2oqp0h/37/
本文标签: javascriptChange size of draggable element upon start of dragStack Overflow
版权声明:本文标题:javascript - Change size of draggable element upon start of drag - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743710987a2525927.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论