react-animations icon indicating copy to clipboard operation
react-animations copied to clipboard

🎊 A collection of animations for inline style libraries

Results 12 react-animations issues
Sort by recently updated
recently updated
newest added

Hi there! This change adds the repository property to your package.json file(s). Having this available provides a number of benefits to security tooling. For example, it allows for greater trust...

Please include a simple line explaining how to npm install the package properly. It is not obvious for some programmers, especially for beginners

There is no file with the typage when working next to the typescript environment.

Hi, I am trying to use ```npm install @types/react-animations``` so I can get my animation to work but getting the error in the subject.

Installation instructions: Might seem obvious but could be useful for beginners.

Current example: ``` const {classes} = jss.createStyleSheet({ '@keyframes bounce': bounce, bounce: { animationName: 'bounce', animationDuration: '1s', }, }).attach() ``` Corrected example: ``` const {classes} = jss.createStyleSheet({ '@keyframes bounce': bounce, bounce:...

Is there a native way to set animations on/before/after component enter/exit? If not is there a recommended way to use this? thanks

how do you fade in from black? I tried using backgroundColor but it doesn't work ```ts ... import Radium, { StyleRoot } from 'radium'; import { fadeIn } from 'react-animations'...