diff --git a/docs/next/layoutanimation.html b/docs/next/layoutanimation.html index 061ec52177f..75758aa30ee 100644 --- a/docs/next/layoutanimation.html +++ b/docs/next/layoutanimation.html @@ -86,11 +86,57 @@
static checkConfig(config, location, name)
An enumerate of animation types to be used in create method.
| Types |
|---|
| spring |
| linear |
| easeInEaseOut |
| easeIn |
| easeOut |
| keyboard |
An enumerate of object property to be animated, used in create method.
| Properties |
|---|
| opacity |
| scaleX |
| scaleY |
| scaleXY |
A set of predefined animation config.
+| Presets | Value |
|---|---|
| easeInEaseOut | create(300, 'easeInEaseOut', 'opacity') |
| linear | create(500, 'linear', 'opacity') |
| spring | { duration: 700, create: { type: 'linear', property: 'opacity' }, update: { type: 'spring', springDamping: 0.4 }, delete: { type: 'linear', property: 'opacity' } } |
Shortcut to bind configureNext() methods with Presets.easeInEaseOut.
Shortcut to bind configureNext() methods with Presets.linear.
Shortcut to bind configureNext() methods with Presets.spring.