6
透明な矩形をクリック可能にすることは可能ですか? それはここEaselJSで透明な矩形をクリックイベント
shape.graphics.setStrokeStyle(2).beginStroke("#000").rect(0, 0, 100, 100)
透明な矩形をクリック可能にすることは可能ですか? それはここEaselJSで透明な矩形をクリックイベント
shape.graphics.setStrokeStyle(2).beginStroke("#000").rect(0, 0, 100, 100)
のように見える、私はそれをしなかったかのコードであるので、私はそれを埋めるためにしたくない:
var shape = new createjs.Shape();
shape.graphics.setStrokeStyle(2).beginStroke("#000").rect(0, 0, 100, 100);
var hit = new createjs.Shape();
hit.graphics.beginFill("#000").rect(0, 0, 100, 100);
shape.hitArea = hit;
詳細は:「EaselJSはに基づいて、表示オブジェクト上でマウスのヒットを計算します。その可視、不透明ピクセル...他の表示オブジェクトをあなたのオブジェクトのhitAreaに割り当てることができます...表示されません。 http://createjs.com/tutorials/Mouse%20Interaction/のドキュメントとデモをご覧ください。 –