是否可以将两个jquery.ui可拖动链接在一起?

时间:2010-01-04 04:02:38

标签: javascript jquery jquery-ui

我有两个jquery.ui draggables。我限制他们移动到y轴。如果将一个拖动到某个y位置,我希望另一个自动移动到相同的y位置,反之亦然。有没有人曾经将其中的两个联系在一起?

5 个答案:

答案 0 :(得分:11)

已更新:脚本和演示已更新,因此在拖动时不再限制为y轴。

此脚本查找类“group”,后跟一个数字以拖放这些组合对象。我发布了demo here

HTML

<div class="demo">
<div id="draggable">
 <p>Drag from here</p>
 <div class="dragme group1"><img src="image1.jpg"><br>Group 1</div>
 <div class="dragme group1"><img src="image2.jpg"><br>Group 1</div>
 <div class="dragme group2"><img src="image3.jpg"><br>Group 2</div>
 <div class="dragme group2"><img src="image4.jpg"><br>Group 2</div>
</div>
<div id="droppable">
 <p>Drop here</p>
</div>
</div>

脚本

$(document).ready(function() {
    // function to get matching groups (change '.group' and /group.../ inside the match to whatever class you want to use
    var getAll = function(t) {
        return $('.group' + t.helper.attr('class').match(/group([0-9]+)/)[1]).not(t);
    };
    // add drag functionality
    $(".dragme").draggable({
        revert: true,
        revertDuration: 10,
        // grouped items animate separately, so leave this number low
        containment: '.demo',
        stop: function(e, ui) {
            getAll(ui).css({
                'top': ui.helper.css('top'),
                'left': 0
            });
        },
        drag: function(e, ui) {
            getAll(ui).css({
                'top': ui.helper.css('top'),
                'left': ui.helper.css('left')
            });
        }
    });
    $("#droppable").droppable({
        drop: function(e, ui) {
            ui.draggable.appendTo($(this));
            getAll(ui).appendTo($(this));
        }
    });
});

答案 1 :(得分:5)

我之前没有这样做,但我建议使用drag事件来调整相应其他元素的位置:

$('.selector').draggable({
    ...,
    drag: function(event, ui) {

    },
    ...
});

ui对象将包含可用于手动重新定位其他元素的信息(在属性ui.offset中)。

答案 2 :(得分:1)

https://forum.jquery.com/topic/dragging-a-group-of-items-alsodrag-like-alsoresize

我找到了UI draggable()的扩展程序。对于UI resizable(),它的工作方式与'alsoResize'相同,即

$('.selector').draggable({ alsoDrag: '.selected' });

在主jquery-ui库之后添加插件代码。

$.ui.plugin.add( 'draggable', 'alsoDrag', {
    start: function() {
        var that = $(this).data("ui-draggable"),
            o = that.options,
            _store = function (exp) {
                $(exp).each(function() {
                    var el = $(this);
                    el.data("ui-draggable-alsoDrag", {
                        top:  parseInt(el.css("top"), 10),
                        left: parseInt(el.css("left"), 10)
                    });
                });
            };

        if (typeof(o.alsoDrag) === "object" && !o.alsoDrag.parentNode) {
            if (o.alsoDrag.length) { o.alsoDrag = o.alsoDrag[0]; _store(o.alsoDrag); }
            else { $.each(o.alsoDrag, function (exp) { _store(exp); }); }
        }else{
            _store(o.alsoDrag);
        }
    },
    drag: function () {
        var that = $(this).data("ui-draggable"),
            o = that.options,
            os = that.originalSize,
            op = that.originalPosition,
            delta = {
                top: (that.position.top - op.top) || 0,
                left: (that.position.left - op.left) || 0
            },

            _alsoDrag = function (exp, c) {
                $(exp).each(function() {
                    var el = $(this), start = $(this).data("ui-draggable-alsoDrag"), style = {},
                        css = ["top", "left"];

                    $.each(css, function (i, prop) {
                        var sum = (start[prop]||0) + (delta[prop]||0);
                        style[prop] = sum || null;
                    });

                    el.css(style);
                });
            };

        if (typeof(o.alsoDrag) === "object" && !o.alsoDrag.nodeType) {
            $.each(o.alsoDrag, function (exp, c) { _alsoDrag(exp, c); });
        }else{
            _alsoDrag(o.alsoDrag);
        }
    },
    stop: function() {
        $(this).removeData("draggable-alsoDrag");
    }
});

答案 3 :(得分:0)

您必须明确设置两个元素的Y轴。

对于这两个元素的事件处理函数,你必须设置Y轴或绑定两个具有相同功能的元素。

快乐的编码。

答案 4 :(得分:0)

以下是标记答案中提到的代码的简化版本(对于像我这样的傻瓜):

  • 在HTML中

    <div id="div1" class="group">...</div>
    <div id="div2"class="group">...</div>
    
  • 在脚本标记

    $(document).ready(function(){ 
        //to get the group 
        var getGroup = function() {
            return $(".group");
        }; // add drag functionality
    
        $(".group").draggable({
            revertDuration: 10,
            // grouped items animate separately, so leave this number low
            containment: "window",
            scroll: false,
            stop: function(e, ui) {
                getGroup(ui).css({
                    'top': ui.helper.css('top'),
                });
            },
            drag: function(e, ui) {
                getGroup(ui).css({
                    'top': ui.helper.css('top'),
                    'left': ui.helper.css('left')
                });
            }
        });     
    });