2
イメージの移動を防止する方法。どのように画像の位置= 350の場合の動きを防止する。閉じ込めのような何か、ちょうど反対です。助けてください。このようなドラッグ可能なJquery:イメージの移動を防ぐ方法
$('#image').draggable(
{
drag: function(event, ui)
{
if($(this).offset().left > 350)
{
//there should be a code prohibiting the
//movement of the image if its position is = 350
}
}
});
ありがとうございます。しかし、 'マウスアップ'は良い考えではありません。:( – john
ああ、なぜそれが必要なのか。 –