我想知道如何使用 jquery 重新定位 facebook 新时间线图像?
此示例类似于 facebook 图像拖动,但这不适用于图像大小限制:http://oneblackbear.com/draggable/index.html
我想要相同的 Facebook 图像重新定位代码。
谢谢
最佳答案
$(".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 });
关于jquery - 使图像可拖动但完全适合父容器,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9850303/