我试图让我的图像顺利拖动。我正在使用这个库: http ://candrews.net/sandbox/spryMap/
这是我的尝试:http: //jsfiddle.net/aUWY2/
我像这样使用'dragend':
stage.on('dragend', function(e) {
stage.transitionTo({
x: stage.getX() + stage.getAbsolutePosition().x,
y: stage.getY() + stage.getAbsolutePosition().y,
duration: 1,
easing: 'ease-in-out'
});
});
它运作不佳。当我向左拖动后再次向右拖动时,它不起作用。我该如何改进它?谢谢。