Animation.rotateY
Number deg,deg的范围-180~180,在Y轴旋转一个 deg 角度。
示例
请使用百度APP扫码
data:{ },
onReady() {
this.animation = swan.createAnimation({
duration: 1000,
delay: 0})
rotateY() {
this.animation.rotateY(Math.random() * 720 - 360).step()
this.setData({animation: this.animation.export()})
});