From 1e391cff9b69a11ab369c393e5fee6905ea8a9cb Mon Sep 17 00:00:00 2001 From: Website Deployment Script Date: Fri, 2 Nov 2018 17:55:23 +0000 Subject: [PATCH] Deploy website Deploy website version based on 0c984be02de594aa85a80adea56c682cb07298fc --- docs/next/layoutanimation.html | 46 ++++++++++++++++++++++ docs/next/layoutanimation/index.html | 46 ++++++++++++++++++++++ docs/next/native-components-ios.html | 4 +- docs/next/native-components-ios/index.html | 4 +- 4 files changed, 96 insertions(+), 4 deletions(-) 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)
 

Properties

+

Types

+

An enumerate of animation types to be used in create method.

+ + + + + + + + + + + + +
Types
spring
linear
easeInEaseOut
easeIn
easeOut
keyboard

+

Properties

+

An enumerate of object property to be animated, used in create method.

+ + + + + + + + + + +
Properties
opacity
scaleX
scaleY
scaleXY

+

Presets

+

A set of predefined animation config.

+ + + + + + + + + +
PresetsValue
easeInEaseOutcreate(300, 'easeInEaseOut', 'opacity')
linearcreate(500, 'linear', 'opacity')
spring{ duration: 700, create: { type: 'linear', property: 'opacity' }, update: { type: 'spring', springDamping: 0.4 }, delete: { type: 'linear', property: 'opacity' } }

+

easeInEaseOut

+

Shortcut to bind configureNext() methods with Presets.easeInEaseOut.


+

linear

+

Shortcut to bind configureNext() methods with Presets.linear.


+

spring

+

Shortcut to bind configureNext() methods with Presets.spring.

← Layout PropsLinking →