こんにちは!
ドラッグアンドドロップにJquery pepを使用しています。
ドラッグ可能にできますが、オブジェクトの現在の位置を取得する方法がわかりません..
これが私のコードです:
var options = {
cssEaseDuration: 1000
start: function(ev,obj){ $('#title').text('Start!'); },
drag: function(ev,obj){
console.log("we're dragging!");
// **I have to know here the coordinates**
},
rest: function(ev,obj){
console.log("stopped!");
}
};
rectangle.pep(options);
デモページはこちら: http://pep.briangonzalez.org/demo
(このページで確認できます。デバッグモードでは、座標が右下に表示されますが、使用できません)
完全な情報: http://www.wwvalue.com/web-design/jquery/kinetic-drag-with-jquery-css3-and-html5.html
ご助力ありがとうございます!!