Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-animated-components

Package Overview
Dependencies
Maintainers
2
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-animated-components

Easy-as-pie CSS animations for React

  • 2.3.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
25
decreased by-44.44%
Maintainers
2
Weekly downloads
 
Created
Source

🥧 react-animated-components 🥧

Easy-as-pie CSS animations for React.

Because animations should be as easy as <Rotate>🥧</Rotate>

Live Demo with Storybook

Built with Typescript. Just one dependency (styled-components 💅).

Install

npm install --save react-animated-components

Use

import { Rotate } from 'react-animated-components'

/** Pie is boring... let's animate it! **/
const BoringPie = () => <span>🥧</span>

/** Pie is more delicious when it's rotating **/
const RotatingPie = () => {
  return (
    <Rotate>
      <BoringPie />
    </Rotate>
  )
}

Demo

jtschoonhoven.github.io/react-animated-components

Component API

<Rotate>

Props:

  • ccw [boolean]: If true, rotates counter-clockwise (default false)

Sub-components:

  • <RotateCw>
  • <RotateCcw>

<Fade>

Props:

  • out [boolean]: If true, fades out and exits the DOM (default false)

Sub-components:

  • <FadeIn>
  • <FadeOut>

<Slide>

Props:

  • up [boolean]: Slide up
  • down [boolean]: Slide down
  • left [boolean]: Slide left
  • right [boolean]: Slide right
  • out [boolean]: If true, slides out and exits the DOM (default false)

Sub-components:

  • <SlideInDown>
  • <SlideInUp>
  • <SlideInLeft>
  • <SlideInRight>
  • <SlideOutDown>
  • <SlideOutUp>
  • <SlideOutLeft>
  • <SlideOutRight>

Common Component API

Animated components all accept the following optional properties.

active

[boolean]

Controls when the animation begins. Except for exit animations, this defaults to true and animations begin automatically on mount. Exit animations do not run until active is set explicitly.

delayMs

[number]

Delays the animation start by the given number of milliseconds.

durationMs

[number]

The total duration (in milliseconds) of one iteration of the animation.

timingFunc

[string]

Defines how animations progress through each cycle. Accepts any valid value of the animation-timing-function CSS property.

iterations

[number | "infinite"]

The number of times to loop the animation, or "infinite".

onComplete

[() => void]

Callback function, called when animation is complete. Useful for garbage collecting components that have exited, or for composing complex chains of effects.

onActive

[() => void]

Callback function, called when animation begins. Useful for chaining delayed animations.

display

["inline-block" | "block"]

A shorthand to set the CSS "display" property. Do not use "inline" this cannot be animated. Any valid CSS display property is valid, but in practice you should use either "inline-block" (the default) or "block".

FAQs

Package last updated on 15 May 2021

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc