Mega Code Archive

 
Categories / Flex / Effects
 

Easing function that creates a bounce motion when combined with the Flex Move effect

<!-- Code from Flex 4 Documentation "Using Adobe Flex 4". This user guide is licensed for use under the terms of the Creative Commons Attribution  Non-Commercial 3.0 License.  This License allows users to copy, distribute, and transmit the user guide for noncommercial  purposes only so long as    (1) proper attribution to Adobe is given as the owner of the user guide; and    (2) any reuse or distribution of the user guide contains a notice that use of the user guide is governed by these terms.  The best way to provide notice is to include the following link.  To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/3.0/ -->     <!-- behaviors\Easing.mxml --> <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"     xmlns:mx="library://ns.adobe.com/flex/mx" xmlns:s="library://ns.adobe.com/flex/spark"     width="650">     <s:layout>         <s:VerticalLayout />     </s:layout>     <fx:Script>                    private function myEasingFunction(t:Number, b:Number,c:Number, d:Number):Number {              if ((t /= d) < (1 / 2.75)) {                  return c * (7.5625 * t * t) + b;              }              else if (t < (2 / 2.75)) {                  return c * (7.5625 * (t-=(1.5/2.75)) * t + .75) + b;              }              else if (t < (2.5 / 2.75)) {                  return c * (7.5625 * (t-=(2.25/2.75)) * t + .9375) + b;              }              else {                  return c * (7.5625 * (t-=(2.625/2.75)) * t + .984375) + b;              }          };             </fx:Script>     <fx:Declarations>         <mx:Move id="moveLeftShow" xFrom="600" xTo="0" yTo="0"             duration="3000" easingFunction="myEasingFunction" />         <mx:Move id="moveRightHide" xFrom="0" xTo="600" duration="3000"             easingFunction="myEasingFunction" />     </fx:Declarations>     <mx:LinkBar dataProvider="myVS" />     <mx:ViewStack id="myVS" borderStyle="solid">         <mx:Canvas id="Canvas0" label="Canvas0"             creationCompleteEffect="{moveLeftShow}" showEffect="{moveLeftShow}"             hideEffect="{moveRightHide}">             <mx:Box height="300" width="600" backgroundColor="#00FF00">                 <mx:Label text="Screen 0" color="#FFFFFF" fontSize="40" />             </mx:Box>         </mx:Canvas>         <mx:Canvas id="Canvas1" label="Canvas1" showEffect="{moveLeftShow}"             hideEffect="{moveRightHide}">             <mx:Box height="300" width="600" backgroundColor="#0033CC">                 <mx:Label text="Screen 1" color="#FFFFFF" fontSize="40" />             </mx:Box>         </mx:Canvas>     </mx:ViewStack> </s:Application>