Animation.scaleX

    Number sx, 在X轴缩放sx倍数

    示例

    请使用百度APP扫码

    Animation.scaleX - 图3

    1. data:{ },
    2. onReady() {
    3. this.animation = swan.createAnimation({
    4. duration: 1000,
    5. delay: 0})
    6. scaleX() {
    7. this.animation.scaleX(Math.random() * 2).step()
    8. this.setData({animation: this.animation.export()})
    9. });