Skip to content

Commit 68b7896

Browse files
committed
chore(Window): change animation type content to table view
1 parent dc789c6 commit 68b7896

File tree

1 file changed

+20
-16
lines changed

1 file changed

+20
-16
lines changed

components/window/animation.md

Lines changed: 20 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -16,27 +16,31 @@ The Telerik Window component for Blazor provides an option to control the openin
1616

1717
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
1818

19-
| Parameter | Type and Default Value | Description |
19+
| Parameter | Type and Default Value| Description |
2020
|--------------------|------------------------------------|-------------|
21-
| `AnimationType` | `WindowAnimationType` (`None`) | Specifies the type of animation used when the window opens or closes. Full list of animation types is listed in the section below. |
22-
| `AnimationDuration`| `int` (`300`) | Defines the duration of the animation in milliseconds. |
21+
| `AnimationType`| `WindowAnimationType` (`None`)| Specifies the type of animation used when the window opens or closes. The full list of animation types is listed in the section below. |
22+
| `AnimationDuration`| `int` (`300`)| Defines the duration of the animation in milliseconds. |
2323

2424
## WindowAnimation Types
2525

2626
The `WindowAnimationType` enumeration includes the following options:
2727

28-
* `None` (default) - No animation.
29-
* `SlideUp` - Slides in from the bottom and slides out to the bottom.
30-
* `SlideDown` - Slides in from the top and slides out to the top.
31-
* `SlideRight` - Slides in from the left and slides out to the left.
32-
* `SlideLeft` - Slides in from the right and slides out to the right.
33-
* `PushUp` - Pushes in from the bottom and pushes out to the top.
34-
* `PushDown` - Pushes in from the top and pushes out to the bottom.
35-
* `PushLeft` - Pushes in from the right and pushes out to the left.
36-
* `PushRight` - Pushes in from the left and pushes out to the right.
37-
* `Fade` - Fades in and out.
38-
* `ZoomIn` - Zooms in from a larger size to its actual size and zooms out by expanding before disappearing.
39-
* `ZoomOut` - Zooms in from a smaller size to its actual size and zooms out by shrinking to the center.
28+
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
29+
30+
| Animation Type | Description |
31+
|----------------|-------------------------------------------------------------------------------------------------|
32+
| `None` (default)| No animation. |
33+
| `SlideUp` | Slides in from the bottom and slides out to the bottom. |
34+
| `SlideDown` | Slides in from the top and slides out to the top. |
35+
| `SlideRight` | Slides in from the left and slides out to the left. |
36+
| `SlideLeft` | Slides in from the right and slides out to the right. |
37+
| `PushUp` | Pushes in from the bottom and pushes out to the top. |
38+
| `PushDown` | Pushes in from the top and pushes out to the bottom. |
39+
| `PushLeft` | Pushes in from the right and pushes out to the left. |
40+
| `PushRight` | Pushes in from the left and pushes out to the right. |
41+
| `Fade` | Fades in and out. |
42+
| `ZoomIn` | Zooms in from a larger size to its actual size and zooms out by expanding before disappearing. |
43+
| `ZoomOut` | Zooms in from a smaller size to its actual size and zooms out by shrinking to the center. |
4044

4145
## Example
4246

@@ -101,7 +105,7 @@ The `WindowAnimationType` enumeration includes the following options:
101105
{
102106
AnimationTypes = new List<WindowAnimationType>();
103107
104-
// Populate the list of animation types
108+
// Populate the list of animation types.
105109
foreach (WindowAnimationType animation in Enum.GetValues(typeof(WindowAnimationType)))
106110
{
107111
AnimationTypes.Add(animation);

0 commit comments

Comments
 (0)