Kinetic JS 3.6中的鼠标事件

时间:2013-05-06 07:12:34

标签: javascript kineticjs

this.prototype.bounding = new Kinetic.Shape(function () {
    var context = this.getContext();
    context.beginPath();
    context.arc(0, 0, radius, 0, 2 * Math.PI, false);
    context.fillStyle = color;
    context.fill();
},"PerspectiveCar");
this.prototype.bounding.vx = 0;
this.prototype.bounding.vy = 0;
this.prototype.bounding.x = positionX;
this.prototype.bounding.y = positionY;    
this.prototype.bounding.on("mousedown", function () {
        alert('Hi');
});

您好, 我正在使用KineticJS 3.6版本。 鼠标事件在这里不起作用。 我不知道原因。 你可以帮助我。

谢谢Vijay

1 个答案:

答案 0 :(得分:0)

它也不适用于“点击”?

this.prototype.bounding.on("click", function () {
        alert('Hi');
});