From 8f21e7943fd2f96907dbac8d79eff548132a48c8 Mon Sep 17 00:00:00 2001 From: Website Deployment Script Date: Fri, 26 Feb 2016 01:47:38 +0000 Subject: [PATCH] Updated docs for next --- releases/next/docs/animated.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/releases/next/docs/animated.html b/releases/next/docs/animated.html index 5e0f0757eae..49054d889e2 100644 --- a/releases/next/docs/animated.html +++ b/releases/next/docs/animated.html @@ -63,7 +63,8 @@ coefficient.

static spring(value: AnimatedValue | AnimatedValueXY, config: SpringAnimationConfig) #

Spring animation based on Rebound and Origami. Tracks velocity state to create fluid motions as the toValue updates, and can be chained together.

static add(a: Animated, b: Animated) #

Creates a new Animated value composed from two Animated values added together.

static multiply(a: Animated, b: Animated) #

Creates a new Animated value composed from two Animated values multiplied -together.

static delay(time: number) #

Starts an animation after the given delay.

static sequence(animations: Array<CompositeAnimation>) #

Starts an array of animations in order, waiting for each to complete +together.

static modulo(a: Animated, modulus: number) #

Creates a new Animated value that is the (non-negative) modulo of the +provided Animated value

static delay(time: number) #

Starts an animation after the given delay.

static sequence(animations: Array<CompositeAnimation>) #

Starts an array of animations in order, waiting for each to complete before starting the next. If the current running animation is stopped, no following animations will be started.

static parallel(animations: Array<CompositeAnimation>, config?: ParallelConfig) #

Starts an array of animations all at the same time. By default, if one of the animations is stopped, they will all be stopped. You can override