我正试图让我的图像顺利拖动。我正在使用这个库: 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'
});
});
效果不佳。当我向左拖动后向右拖动它不起作用。我怎样才能改进它?感谢。