flex Rotate 效果 停顿

<mx:Panel width="50%" height="50%" id="hbox" click="rotate.play()">
        <mx:Label text="aaaa"/>
    </mx:Panel>
    <mx:Rotate id="rotate" repeatCount="0" angleFrom="0" easingFunction="{mx.effects.easing.Linear.easeNone}" angleTo="360" target="{hbox}" duration="4000"/>

 

 

 

 

 

如果不用  下面的函数..则会出现转一圈停一下..转一圈停一下的效果.easeNone () 方法定义一种没有加速的持续运动。

mx.effects.easing.Linear.easeNone

你可能感兴趣的:(Flex,360)