Simple React wrappers to add animations to your components!
npm install motion-packNote: Every wrapper component in MotionPack has a default animation, if you would like to customize the animation. You can change the props shown below for each component
import { Reveal } from "motion-pack"
return (
<Reveal>
<p>this text will be animated with reveal effect!</p>
</Reveal>
)| 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.