KaxMenuCollapseAnimation Property |
Namespace: Kettic.AspNet.Controls
[PersistenceModeAttribute(PersistenceMode.InnerProperty)] public AnimationSettings CollapseAnimation { get; }
Use the CollapseAnimation property to customize the expand
animation of KaxMenu. You can specify the
Type,
Duration and the
items are collapsed.
To disable expand animation effects you should set the
Type to
AnimationType.None. To customize the expand animation you can
use the ExpandAnimation property.
ASPX:
<kettic:KaxMenu ID="KaxMenu1" runat="server">
<CollapseAnimation Type="OutQuint" Duration="300" />
<Items>
<kettic:KaxMenuItem Text="News" >
<Items>
<kettic:KaxMenuItem Text="CNN" NavigateUrl="http://www.cnn.com" />
<kettic:KaxMenuItem Text="Google News" NavigateUrl="http://news.google.com" />
</Items>
</kettic:KaxMenuItem>
<kettic:KaxMenuItem Text="Sport" >
<Items>
<kettic:KaxMenuItem Text="ESPN" NavigateUrl="http://www.espn.com" />
<kettic:KaxMenuItem Text="Eurosport" NavigateUrl="http://www.eurosport.com" />
</Items>
</kettic:KaxMenuItem>
</Items>
</kettic:KaxMenu>