私はこの例に従っています: http://www.html5canvastutorials.com/labs/html5-canvas-modify-shape-color-on-click/マウス操作で私の形の色を変えるために。
色の設定についてはすべて問題ありませんが、例を参照してください。
私は青い線を持っています。赤に変換すると、線の境界に青いピクセルが残ります。そして、青に戻ると、いくつかの赤いピクセルが残ります。
私のコードは次のとおりです。
recolor: function(newColor){
// Children are Kinetic.rect or Kinetic.line
var children=this.group.children;
for( var k in children){
if(children[k] instanceof Kinetic.Line)
children[k].setStroke(newColor);
else
children[k].setFill(newColor);
}
this.group.draw();
}
これがスクリーンショットです(通常とズーム):