Skip to content

Latest commit

 

History

History
55 lines (38 loc) · 1.26 KB

README.md

File metadata and controls

55 lines (38 loc) · 1.26 KB

anima-react

An animation wrapper component library for react

Installation

yarn add anima-react

# OR:

npm install anima-react

Basic usage

import { FadeIn, getIncrementor } from 'anima-react';

// return an incremented number on every call
const getDelay = getIncrementor(0, 0.15);

// Wrap your component and add an optional delay
<FadeIn orientation="up" delay={getDelay()}>
  <YourReactComponent />
</FadeIn>;

Components

FadeIn

name type default
delay number 0
orientation left right up down none left
distance number 10
duration number 0.2

ZoomIn

name type default
delay number 0
orientation left right up down none none
distance number 100
duration number 0.2

Develop

yarn install
yarn dev