大家好,我是 KineticJS 的菜鸟,我想知道如何更改属性值。例如对于创建后的矩形:
var rect = new Kinetic.Rect({
x: 239,
y: 75,
width: 100,
height: 50,
fill: "#00D2FF",
stroke: "black",
strokeWidth: 4
});
我将如何做这样的事情:
rect.NewProperty({
x: 100,
y: 30,
width: 100,
height: 50,
fill: "#cccccc",
});
并让其他属性保持不变?