Home

Awesome

<h1 align="center">react-anime</h1> <div align="center">

Npm Package License Unit Tests Coverage Tests Vulnerabilities

(ノ´ヮ´)ノ*:・゚✧ A super easy animation library for React built on top of Julian Garnier's anime.js. <br> Just place an <Anime> component and what you want animated inside.

Documentation | Demos | Anime.js

</div>

Installation

npm i react-anime -S

Features

Usage

import Anime, { anime } from 'react-anime';

let colors = [ 'blue', 'green', 'red' ];

const MyAnime = (props) => (
    <Anime delay={anime.stagger(100)} scale={[ 0.1, 0.9 ]}>
        {colors.map((color, i) => <div key={i} className={color} />)}
    </Anime>
);