New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

react-animation-wrapper

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-animation-wrapper

A set of react components wrapper to add animation, like animate.css

latest
Source
npmnpm
Version
0.2.0
Version published
Maintainers
1
Created
Source

react-animation-wrapper

A declarative set of react components wrapper to bring in animation, like animate.css.

Check the demo page here

npm version downloads per months

Why Another Animate.css

Compared to animate.css, react-animation-wrapper has many uncomparable advantages:

  • 📦 Extremely light-weight: 6kb (uglified) vs 72kb (animate.css)
  • 🙅 No global CSS variable polution (css in js).
  • ✂️ Much More configurable and customizable via JavaScript and React.

Usage

npm install --save react-animation-wrapper

Write a custom, normal react component:

const Header = () => <h1 style={{ textAlign: 'center' }}>Hello World</h1>

Wrap it up with the name of the animation wrapper: (Check out all the available ones in the demo page!)

import { BounceIn } from 'react-animation-wrapper'
ReactDOM.render(
  <BounceIn>
    <Header />
  </BounceIn>,
  document.querySelector('.root')
)

You are all set!

Animations available:

WrapperName
BounceFlashPulse
ShakeRubberBandSwing
JelloWobbleFadeIn
TadaBounceFlip
ZoomInZoomOutJackInTheBox
RotateInRollIn

Check the demo page here to see what they look like.

CHANGELOG

v0.1.0

add 17 animations presets

v0.2.0

expose createAnimationWrapper for customzied animation and could configure the animation properties (delay, iterationCount, delay) via passing props into the animation wrapper component

FAQ

Why is my animation acting weird, not as expected

The most possible reason is that you didn't specify the size and alignment of the container box of the content. This leads to the issue where your CONTAINER BOX is being animated, rather than its content. Make sure your content size is the same as its container.

Why there appears a scroll bar in the middle of the animation

Due to different OS, browser and animations that transform its shape during the animation, it's likely that it goes beyond its container box, which then shows up a scroll bar. A quick fix: add overflow: hidden in the container box of the wrapper component.

Contribution

This project is in a sense very beginner-friendly project for those who want to get some fun of open source. It's well modularized, and the logic of each components is quite easy and similar to each other.

See the issues with the good first issue tag and I welcome all kinds of support and can provide some guide.

Keywords

react

FAQs

Package last updated on 07 Mar 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts