What are the animation types supported by Silverlight?

What are the animation types supported by Silverlight?

Silverlight supports 2 types of animations:

- From/To/By animation
Used for animating between a starting and ending value:

- From is used to set the starting value
- To is used to set the ending value
- By is used for setting ending value relative to the starting value of the animation

- Key-frame animation
- Key frame objects animates between a series of values.
- They are powerful than From/To/By animations, as there is flexibility to specify any number of target values and even interpolation method can also be controlled.
Concept of KeyFrame - Silverlight
The value of the target property is animated by a key-frame animation. A transition among its target values over its duration is created...
Explain how to control animation from JavaScript code - Silverlight
The animation is controlled by starting the execution of Begin() on the Storyboard. For example let us name the Storyboard as “animation”...
Determine the media position when playing a video in Silverlight
The elements mePlayer.width and mePlayer.height retrieves the positions of the media in silver light. The source of the media player ...
Post your comment