Using Resize effect to enlarge an image on mouse-over : Resize Effect « Effects « Flex






Using Resize effect to enlarge an image on mouse-over

Using Resize effect to enlarge an image on mouse-over
    
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
    backgroundColor="white">
    <mx:Resize id="fxEnlarge" widthTo="300" heightTo="176" />
    <mx:Resize id="fxShrink" widthTo="150" heightTo="88" />
    <mx:Image id="thumbnail" rollOverEffect="{fxEnlarge}" rollOutEffect="{fxShrink}" source="logo.jpg" />
</mx:Application>

   
    
    
    
  








Related examples in the same category

1.Two Resize effects for a Button controlTwo Resize effects for a Button control
2.Define effect using ActionScript with ResizeDefine effect using ActionScript with Resize
3.Use ActionScript to set up resize effectUse ActionScript to set up resize effect
4.Use Resize effect when the user moves the mouse over itUse Resize effect when the user moves the mouse over it
5.Add resize effect to transitionAdd resize effect to transition
6.Panel resize effectPanel resize effect
7.Use two Resize effects for a Button control.Use two Resize effects for a Button control.
8.Resize Easing Effect
9.Add a transition to use a Wipe effect and a Resize effect with an easing function to animate the transition from view state to view stateAdd a transition to use a Wipe effect and a Resize effect with an easing function to animate the transition from view state to view state
10.Resize Image EffectResize Image Effect
11.Reverse Resize EffectReverse Resize Effect
12.Apply a Resize effect to multiple Button controls by using data binding with the effect's targets propertyApply a Resize effect to multiple Button controls by using data binding with the effect's targets property
13.Resize effectsResize effects
14.Using the Resize effect on an Image controlUsing the Resize effect on an Image control
15.Resizing a button that starts small and grows biggerResizing a button that starts small and grows bigger
16.Increase width and height of a Button control by 15 pixels each time the user selects itIncrease width and height of a Button control by 15 pixels each time the user selects it
17.Resize Target by PropertiesResize Target by Properties