我想知道facebook新时间轴图像如何用jquery重新定位?
此示例类似于Facebook图片拖动,但这不适用于图片大小限制:http://oneblackbear.com/draggable/index.html
我想要相同的脸书图片重新定位代码。
由于
答案 0 :(得分:5)
$(".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 });
}
}
});
或者您可以手动设置元素的包含:
$("img").draggable({ containment: [-99, -119, 0, 0], scroll: false });