Class AnimationSettings
A class that holds animation settings.
Inheritance
System.Object
AnimationSettings
Namespace: Syncfusion.Blazor.Lists
Assembly: Syncfusion.Blazor.dll
Syntax
public class AnimationSettings : Object
Constructors
AnimationSettings()
Declaration
public AnimationSettings()
Properties
Duration
Gets or sets the time duration of transform object.
Declaration
public double Duration { get; set; }
Property Value
Type | Description |
---|---|
System.Double | If we set the duration value, then the content transforms with in specified duration otherwise the default duration value 400 is set. |
Easing
Gets or sets the easing effect applied while transform.
Declaration
public string Easing { get; set; }
Property Value
Type | Description |
---|---|
System.String | If we set the easing value, then the specified easing effect is applied for expand action otherwise the default easing value |
Remarks
The available easing value are:
ease - Default value. The animation has a slow start, then fast, before it ends slowly.
linear - The animation has the same speed from start to end.
ease-in - The animation has a slow start.
ease-out - The animation has a slow end.
ease-in-out - The animation has both a slow start and a slow end.
Effect
Gets or sets the effect which is shown in sub list transform.
Declaration
public ListViewEffect Effect { get; set; }
Property Value
Type | Description |
---|---|
ListViewEffect | One of the ListViewEffect enumeration. The default value is SlideLeft |
Remarks
The available effects are:
None
.SlideLeft
.SlideDown
.Zoom
.Fade
.