motion-pack
v0.2.4
Published
Simple React wrappers to add animations to your components!
Readme
MotionPack
Simple React wrappers to add animations to your components!
Install
npm install motion-packReveal
import { Reveal } from "motion-pack"
return (
<Reveal>
<p>this text will be animated with reveal effect!</p>
</Reveal>
)Reveal Props
| Name | Value | | ------------ | --------- | | startingHeight | number | | duration | number | | ease | string | | fade | string | | delay | number |
startingHeightis the initial height (in pixels) from which the animation begins.durationis the duration (in seconds) of the reveal animation.easeis the easing function for the animation, determining the motion curve.fadeControls whether the animation fades in (0 to 1 opacity) or out (1 to 0 opacity).delayis the delay (in seconds) before the animation begins.
