私がやりたいのは、mousedownで図形を動的に作成し、すぐにその図形(図形)をmouseupが所定の位置に設定するまでマウスカーソルに追従させることです。これが私がこれまでに持っているものであり、それは私のために働いていません。
addNegativeButton.on('mousedown', function(){
var userPos = stage.getUserPosition();
shapesLayer.add(new Kinetic.Image({
image: imageObj,
x: userPos.x,
y: userPos.y,
height: 25,
width: 25,
rotation: 1,
draggable: true,
offset: 12
}));
var last = shapesLayer.getChildren()[shapesLayer.getChildren().length -1];
stage.on("mouseup", function(){
last.setAbsolutePosition(stage.getUserPosition());
stage.off("mouseup");
});
繰り返しになりますが、私が持っているのは「addNegativeButton」で、クリックすると図形が作成されます。ただし、クリックが解除されるまでマウスカーソルを追跡したいと思います。
http://jsfiddle.net/CPrEe/37/ 何か提案はありますか?