使图像可拖动,但完全适合父控制

时间:2012-03-24 08:41:05

标签: jquery jquery-ui

我想知道facebook新时间轴图像如何用jquery重新定位?

此示例类似于Facebook图片拖动,但这不适用于图片大小限制:http://oneblackbear.com/draggable/index.html

我想要相同的脸书图片重新定位代码。

由于

1 个答案:

答案 0 :(得分:5)

Try this demo!

$(".image_drag img").draggable({

    stop: function(ev, ui) {
        var hel = ui.helper, pos = ui.position;
        //horizontal
        var h = -(hel.outerHeight() - $(hel).parent().outerHeight());
        if (pos.top >= 0) {
            hel.animate({ top: 0 });
        } else if (pos.top <= h) {
            hel.animate({ top: h });
        }
        // vertical
        var v = -(hel.outerWidth() - $(hel).parent().outerWidth());
        if (pos.left >= 0) {
            hel.animate({ left: 0 });
        } else if (pos.left <= v) {
            hel.animate({ left: v });
        }
    }

});

或者您可以手动设置元素的包含:

jsBin demo

$("img").draggable({ containment: [-99, -119, 0, 0], scroll: false });