Basics of animations with React Framer Motion

#207

React - Framer Motion

July 29, 2020

alt text

Creating animations in React with Framer Motion 🔥🔥

Today I want to show you a bit about Framer Motion: an animation and gesture library for React. This makes creating animations super simple, let's see how.

On the first example we have a sliding down animation while increasing the opacity. To do so, we need to first import 'motion' from the library. Then, we'll create a div element with the 'motion.div' component and we'll pass in some props.

import { motion } from 'framer-motion' const App = () => { const variants = { hidden: { opacity: 0, transform: 'translateY(-60vh)' }, visible: { opacity: 1, transform: 'translateY(0vh)' }, } return ( <div className="app"> <motion.div className="box" initial="hidden" animate="visible" variants={variants} transition={{ duration: 1 }} > WebDevTips </motion.div> </div> ) }

Here the main one is the 'variants' object where we pass the properties that our element will have when it's hidden and when it's visible. Notice that we set the names for these states - 'hidden' and 'visible' - also as props. Finally we pass a transition object where we are setting the duration for it.

import { motion } from 'framer-motion' const App = () => { return ( <div className="app"> <motion.div className="box" animate={{ scale: 1.8, rotate: 360, }} transition={{ duration: 1 }} > WebDevTips </motion.div> </div> ) }

On the second example we have an element that scales and rotates at the same time. To do this, we basically do the same thing as in the first example but instead of passing the variants to define the animation, we just pass the properties we want to animate on the 'animate' prop. And we're done!

Hope you liked it and let me know if you have any doubts with it 😁✌️