一个连续循环动画如何使用animate
?在这个例子中,我想做的就是无休止地旋转一个白色方块。
myBall = new Layer
x: 100
y: 100
width: 200
height: 200
borderRadius: "20px"
backgroundColor: "#FFF"
myBall.animate
properties:
rotationZ: 360
time: 1
myBall.on Events.AnimationEnd, ->
this.animate
properties:
rotationZ: 360
time: 1
this.backgroundColor = "#666"
在第一次 360˚ z 旋转后,背景颜色将更改为 #666,但动画将停止。我认为如果repeat: -1
指示连续而不必听,那将是理想的AnimationEnd
。