RadMenu for ASP.NET AJAX

Animations Send comments on this topic.
See Also
Controls > RadMenu > Appearance and Styling > Animations

Glossary Item Box

The ExpandAnimation and CollapseAnimation properties let you apply animated effects when child menu items appear and disappear. Each property is of type Telerik.Web.UI.AnimationSettings, which has two fields:

  • Duration: the duration of the effect in milliseconds
  • Type: the animated effect. It is one of the following pre-defined animation types:
    • Linear
    • InQuad
    • OutQuad
    • InOutQuad
    • InCubic
    • OutCubic
    • InOutCubic
    • InQuart
    • OutQuart
    • InOutQuart
    • InQuint
    • OutQuint
    • InOutQuint
    • InSine
    • OutSine
    • InOutSine
    • InExpo
    • OutExpo
    • InOutExpo
    • InBack
    • OutBack
    • InOutBack
    • InBounce
    • OutBounce
    • InOutBounce
    • InElastic
    • OutElastic
    • InOutElastic
[ASP.NET] RadComboBox with animation effects Copy Code
<telerik:radcombobox
   
id="RadComboBox1"
   
Runat="server">
 
<ExpandAnimation Type="OutQuart" Duration="300" />
 
<CollapseAnimation Type="OutQuint" Duration="200" />
 
<ExpandDelay="100">
 
<CollapseDelay="100">
</
telerik:radcombobox>

You can see a live example of Animation effects at Expand Animation.

See Also