你好!
我使用 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
非常感谢您的帮助!!