Configuration

To perform CSS transitions and animations when a React component enters or exits the DOM, the Animations use the ReactTransitionGroup add-on.

The Animations wrap all components which will be animated and enclose every child element in an AnimationChild component. The AnimationChild component implements the required special life-cycle hooks and each child component is wrapped in an additional div element.

The TransitionGroup component automatically detects the enter and exit state of the children. This means that to animate a child, you only need to add or remove it.

Default Setup

The following example demonstrates how to animate a CONTENT element which is added to the Slide Animation with an entering effect. When CONTENT is removed, the element acquires a special animation effect.

Example
View Source
Change Theme:

Animating Elements and Components

The Animations provide options for animating:

Entering Components

To the child component which enters the animation, the Animations set a {transitionName}-enter CSS class. Then, to start the animation, they add a {transitionName}-enter-active CSS class to the child.

The naming convention of the CSS class names is inherited from the TransitionGroup component. For example, the Slide adds a k-slide-down-enter CSS class on enter and, in the next tick, adds a k-slide-down-enter-active to activate the transition.

Exiting Components

To the child component which exits the animation, the Animations set a {transitionName}-exit CSS class. Then, to start the animation, they add a {transitionName}-exit-active CSS class to the child.

The naming convention of the CSS class names is inherited from the TransitionGroup component. For example, the Slide adds a k-slide-down-exit CSS class on exit and, in the next tick, adds a k-slide-down-exit-active to activate the transition.

Exiting components are not available in the DOM. To apply reactive updates to a child which is exiting, use the childFactory function.

Multiple Elements

The enter and exit animation state of multiple elements is automatically controlled by TransitionGroup. This means that whenever you add or remove an item, TransitionGroup detects through its key property which item is updated and then animates it.

Example
View Source
Change Theme: