Animation.skew

    Number ax,Number ay

    示例

    Animation.skew - 图4

    1. data:{ },
    2. onReady() {
    3. this.animation = swan.createAnimation({
    4. transformOrigin: "50% 50%",
    5. timingFunction: "ease",
    6. })
    7. },
    8. this.animation.skew(Math.random() * 90, Math.random() * 90).step()
    9. this.setData({animation: this.animation.export()})
    10. }