我在Konva舞台上添加了一个矩形。我给了中风。当我将鼠标悬停时,笔划会消失,直到我将鼠标悬停为止。我希望将鼠标悬停在笔触上。有可能吗?
我已经尝试过strokeHitEnabled(false)和strokeHitEnabled(true),希望可能有效果,但是没有效果。
rect1 = new Konva.Rect({
x: simpleFrameX,
y: simpleFrameY,
width: simpleFrameWidth - simpleFrameStrokeWidth,
height: simpleFrameHeight - simpleFrameStrokeWidth,
fill: 'rgba(255, 255, 255, 0)',
stroke: simpleFrameStrokeColour,
strokeWidth: simpleFrameStrokeWidth,
draggable: true,
name: 'productImage',
id: 'id' + stagedImageCount
});
stagedImageCount++;
layer.add(rect1);
layer.draw();
答案 0 :(得分:1)
深入我的开发代码中,我发现自己实际上在哪里实现了这一点,并且忘记了删除strokeEnabled(false)和匹配的strokeEnabled(true)。
<embarrassed>