使用EaselJS在透明矩形上单击事件

时间:2013-05-30 07:12:35

标签: easeljs

是否可以制作透明的直肠可点击? 我不想填写它看起来像

     shape.graphics.setStrokeStyle(2).beginStroke("#000").rect(0, 0, 100, 100)

1 个答案:

答案 0 :(得分:11)

这是代码我是如何做到的:

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;