当前位置: 代码迷 >> JavaScript >> KineticJS中的动画
  详细解决方案

KineticJS中的动画

热度:33   发布时间:2023-06-07 16:34:39.0

我在图层上添加了一个圆圈。 在该层的顶部,我添加了一个文本。 我想在鼠标悬停在圆上时运行动画,但是当鼠标到达文本时,将调用mouseout回调函数。 我该如何预防?

var circle = new Kinetic.Circle({
    x: j * xcenterstep  + xshift,
    y: i * ycenterstep  + yshift,
    radius: t_radius,
    fill: t_fill,
    stroke: t_stroke,
    strokeWidth: t_stroke_w,
    strokeOpacity: 0.1,
    opacity: 0.3 + t_number * 0.05,                 
});
if (t_number) {
    circle.tw;
    circle.on("mouseover", function () {                    
        this.tw = new Kinetic.Tween({
            node: this,
            duration: 0.3,
            strokeWidth: 6
        });
        this.tw.play();
    });
    circle.on("mouseout", function () {
        this.tw.reverse();
    });
}

// Adding the text 
var radiusText = new Kinetic.Text({
    x : circle.getX(),
    y : circle.getY(),
    text : t_number,
    fontSize : radius,                  
    fill : '#fff',
    fontStyle: 'bold',
    align : 'center'
});
radiusText.setOffset({
    x : radiusText.getWidth()/2,    
    y : radiusText.getHeight()/2
});

bgLayer.add(circle);
bgLayer.add(radiusText); 

我认为最好使用mouseenter事件。 您可以禁用文本事件以防止mouseout移出圈子。

radiusText.listening(false)

查看您的代码,您缺少}来关闭if (t_number) { 我不确定它是否应该包含mouseovermouseout事件,但它可能导致您的代码响应与预期不同。

  相关解决方案