0

在 KonvaJS 中,可以旋转组中的所有元素,例如:

this指组对象)

this.rotation('30'); // rotates all elements inside the group by 30°

现在,如果我尝试调整宽度/高度,它将不起作用。

 // trying to set the group width to 300px and make the grouped items inside increase proportionally.

this.width(300);
4

1 回答 1

1

我找到了:

this.scale({x: '1.1', y: '1.1'});

在这种情况下,1.1意味着大 10%。它影响组中的所有元素。

于 2016-12-26T19:55:42.613 回答