在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);
答案 0 :(得分:1)
我找到了它:
this.scale({x: '1.1', y: '1.1'});
在这种情况下, 1.1 意味着大10%。它会影响组中的所有元素。