Drag & Drop not working properly on Retina iPad (createjs)
问题 I want to create a simple drag & drop exercise, but on the Retina iPad "drag & drop" is not working properly. Here is the code: var that = this; createjs.Touch.enable(stage); stage.enableMouseOver(10); function initPage() { var shape = new createjs.Shape(); shape.graphics.beginFill("#999999").drawRoundRect(100,100,140,60,8).endFill(); shape.on("mousedown", function(evt) { this.alpha = 0.8; this.offset = {x: this.x - evt.stageX, y: this.y - evt.stageY}; }); shape.on("pressmove", function(evt)