Animation.translateY
Number ty
示例
data:{ },
onReady() {
this.animation = swan.createAnimation({
duration: 1000,
timingFunction: "ease",
translateY() {
this.animation.translateY(Math.random() * 100 - 50).step()
this.setData({animation: this.animation.export()})
});