Animation.skew(Number ax, Number ay)
基础库
3.34.0
开始支持
对 X、Y 轴坐标进行倾斜。
参数
Number ax, Number ay
参数说明
参数范围 -180~180 ;一个参数时,Y 轴坐标不变,X 轴坐标延顺时针倾斜 ax
度;两个参数时,分别在 X 轴倾斜 ax
度,在 Y 轴倾斜 ay
度。(不支持 90/-90 度的倾斜。传入 90/-90 时,不会报错,但是将得到与预期不符的效果。)
返回值
Animation
示例代码
const animation = bl.createAnimation();
animation.skew(Math.random() * 90, Math.random() * 90).step();