Animation.scaleX
Number sx, 在X轴缩放sx倍数
示例
请使用百度APP扫码
data:{ },
onReady() {
this.animation = swan.createAnimation({
duration: 1000,
delay: 0})
scaleX() {
this.animation.scaleX(Math.random() * 2).step()
this.setData({animation: this.animation.export()})
});