# react-anime **Repository Path**: studvc/react-anime ## Basic Information - **Project Name**: react-anime - **Description**: (ノ´ヮ´)ノ*:・゚✧ A super easy animation library for React! - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-01-05 - **Last Updated**: 2021-01-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README

react-anime

[![Npm Package][npm-img]][npm-url] [![License][license-img]][license-url] [![Unit Tests][travis-img]][travis-url] [![Coverage Tests][codecov-img]][codecov-url] [![Dependency Status][david-img]][david-url] [![devDependency Status][david-dev-img]][david-dev-url] > (ノ´ヮ´)ノ*:・゚✧ A super easy animation library for React built on top of Julian Garnier's [anime.js](https://github.com/juliangarnier/anime).
> Just place an `` component and what you want animated inside. [Documentation](documentation.md) | [Demos](https://codepen.io/collection/nrkjgo/) | [Anime.js](https://github.com/juliangarnier/anime)
## Installation ```bash npm i react-anime -S ``` ## Features - Animate nearly all CSS, SVG, & DOM attributes by adding a prop with their name (eg. `opacity`, `backgroundColor`, `translateX`). - Nested animations are as easy as putting an `` component inside another. - Animations can react to changes in `state`. - Cascading animations through `delay` prop. - [TypeScript](http://typescriptlang.org/)/[Flow](https://flowtype.org/) definitions included. ## Usage ```js import React from 'react'; import Anime, {anime} from 'react-anime'; const App = (props) => (
); ``` [license-img]: http://img.shields.io/:license-mit-blue.svg?style=flat-square [license-url]: https://opensource.org/licenses/MIT [david-url]: https://david-dm.org/hyperfuse/react-anime [david-img]: https://david-dm.org/hyperfuse/react-anime.svg?style=flat-square [david-dev-url]: https://david-dm.org/hyperfuse/react-anime#info=devDependencies [david-dev-img]: https://david-dm.org/hyperfuse/react-anime/dev-status.svg?style=flat-square [travis-img]: https://img.shields.io/travis/hyperfuse/react-anime.svg?style=flat-square [travis-url]:https://travis-ci.org/hyperfuse/react-anime [codecov-img]:https://img.shields.io/codecov/c/github/hyperfuse/react-anime.svg?style=flat-square [codecov-url]: https://codecov.io/gh/hyperfuse/react-anime [npm-img]: https://img.shields.io/npm/v/react-anime.svg?style=flat-square [npm-url]: http://npm.im/react-anime