AnimationBase
Definition
Namespace:Telerik.Blazor.Components.Common
Assembly:Telerik.Blazor.dll
Syntax:
public abstract class AnimationBase : BaseComponent, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Inheritance: objectComponentBaseBaseComponentAnimationBase
Derived Classes:
Implements:
Inherited Members
Constructors
protected AnimationBase()
Properties
Defines the animation duration of the container. Default AnimationDuration is 300ms.
[Parameter]
public int AnimationDuration { get; set; }
Defines the animation type of the container. Default value is AnimationType.SlideDown.
[Parameter]
public AnimationType AnimationType { get; set; }
[Parameter]
public RenderFragment? ChildContent { get; set; }
Defines the height of the animation container. Cannot be in percent.
[Parameter]
public string? Height { get; set; }
Defines the hide delay of the animation container. Default delay is 20ms.
[Parameter]
public int HideDelay { get; set; }
Defines the left position of the animation container.
[Parameter]
public string? Left { get; set; }
Defines class to be added to the k-animation-container element.
[Parameter]
public string ParentClass { get; set; }
Defines inline style to be added to the k-animation-container element.
[Parameter]
public string ParentInlineStyle { get; set; }
Defines the show delay of the animation container. Default delay is 20ms.
[Parameter]
public int ShowDelay { get; set; }
Defines the top position of the animation container.
[Parameter]
public string? Top { get; set; }