react-animate-on-change
TypeScript icon, indicating that this package has built-in type declarations

2.2.0 • Public • Published

react-animate-on-change

Build Status

Animate your react components on props or state changes, in contrast to entries added/removed from arrays.

Install

npm install react-animate-on-change react

Usage

import AnimateOnChange from 'react-animate-on-change'
// CommonJS:
// const AnimateOnChange = require('react-animate-on-change').default
 
// functional component
const Score = (props) =>
  <AnimateOnChange
    baseClassName="Score"
    animationClassName="Score--bounce"
    animate={props.diff != 0}>
      Score: {props.score}
  </AnimateOnChange>

The example above will (roughly) render to:

On enter or changes in props.diff or props.score:

<span class="Score Score--bounce">
  <span>Score: 100</span>
</span>

On animation end:

<span class="Score">
  <span>Score: 100</span>
</span>

Also, see the example folder.

Props

baseClassName {string} : Base class name that be added to the component.

animationClassName {string} : Animation class name. Added when animate == true. Removed when the event animationend is triggered.

animate {bool} : Whether component should animate.

customTag {string} : HTML tag of the component.

onAnimationEnd {() => void)} : Callback which is called when animation ends.

Develop

Setup:

npm install
cd test
npm install
cd ..

Add tests in test/client-tests.js, start tests with:

npm test

Build and view example:

npm run build-example
open example/index.html

Known issues

  • The browser must support CSS3 animations.

Dependents (2)

Package Sidebar

Install

npm i react-animate-on-change

Weekly Downloads

3,154

Version

2.2.0

License

MIT

Unpacked Size

1.15 MB

Total Files

18

Last publish

Collaborators

  • arve0