2016-12-26 14 views
0

次のようにグループ内のすべての要素を回転させることが可能である:Iin KonvaJS、グループ内のすべてのアイテムを比例的にサイズ変更する方法は? 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); 

答えて

1

私はそれを見つけた:この場合

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

1.1 10%大きいことを意味します。グループ内のすべての要素に影響します。

関連する問題