TL;DR: This blog post provides a comprehensive guide using Framer Motion, a React animation library. It covers key concepts like motion components, variants, and transitions and provides practical examples of creating fading button, slide-in sidebar, draggable modal, and card flip animations.
Our first priority as front-end developers is to create web applications that keep users engaged. This is possible by creating interactive pages and providing a better user experience.
Animations make your pages interactive; they guide users and make interactions interesting. Small visual motions on the page, such as user interaction or events or page navigation, give a feel of liveliness, like we are interacting with a living thing responding to our actions.
Animation, in simple terms, is a way of visually changing the elements by updating their properties or dimensions over time on interactions or certain events. For example, a loading indicator that shows that your action is in progress.
There are two ways to animate an element on the webpage (two ways to change the element properties).
- Through CSS, libraries like Animate.css provide a set of animation classes that can be added to HTML elements.
- Through JavaScript, libraries like Framer Motion manipulate the DOM element’s properties at runtime through code.
In this article, we will explore Framer Motion, one of the most popular libraries for animation. It provides simplicity and flexibility and is designed to work with modern frontend frameworks like React.
Why Framer Motion?
Framer Motion is a production-ready animation library for React that creates simple animations like transitions and complex, gesture-based interactions through its declarative syntax. It features:
- Ease of use: Framer Motion is extremely simple and easy to use, thanks to its intuitive APIs and methods.
- Flexibility: It can be used to create complex animations like pan, drag, pinch, or simple animations like fading, transitioning.
- Performance: Motion components are optimized for performance, as they are rendered outside the React lifecycle to run smoothly and ensure a seamless user experience.
- Community and Support: Extensive documents, large sets of examples, and great adoption by the community make it easier to get started.
Getting started with Framer Motion
Add the Framer Motion library to your project using the npm or yarn package manager.
npm install framer-motion
Or
npm install framer-motion
Once the dependency is loaded you can include this in your project to create interactive animations.
yarn add framer-motion
Basic concepts
Motion components:
Framer Motion comes with a list of motion components to create 120fps animations. It provides gesture support that contains all the HTML elements (like motion.div) and common SVG elements (like motion.square) that are special React components that can be used.
// On Client side import { motion } from "motion/react" // On Server-side import * as motion from "motion/react-client"
Props & APIs:
Framer Motion provides a list of APIs as props, such as initial, animate, and exit that define the animation behavior.
<motion.div className="card" />
Initial prop is fired on the component mount, animate is fired when the component updates, and the exit prop is fired when the component unmounts. Refer to the complete Framer Motion animation guide for more details.
Motion components are independent of the Reacts lifecycle or render cycle for improved performance. Thus, we should rely on the React state for the animation, rather than using the motion values that will update the styles without triggering re-renders.
<motion.button initial={{opacity: 0}} animate={{opacity: 1}} transition={{duration: 1}} exit={{opacity: 0}} > Click Me </motion.button>
Variants includes:
- listVariants: Defines the animation behavior for the entire list, we pass the variants values on the props that will access the properties on its firing. initial=”hidden” and animate=”visible”. staggerChildren ensures that the child elements animate in sequence.
- itemVariants: Defines the animation behavior for the list items.
- The motion.ul and motion.li components inherit the variants to create a coordinated animation.
Custom components: Any React component can be converted to a motion component by passing it through the motion.create() function.
import { motion, useMotionValue } from "framer-motion"; const MotionState = () => { const xPosition = useMotionValue(0); useEffect(() => { // It won’t trigger a re-render on the component const interval = setInterval(() => { xPosition.set(xPosition.get() + 100); }, 1000); return () => clearInterval(interval); }, []); return ( <motion.div > <p>In the previous example, the <strong>motion.div</strong> element will be translated by 100px on the x position (horizontally, translateX(100px)) at an interval of 1s.</p> <p><strong>Variants:</strong> framer-motion provides support for the variants, which allows the reuse of animation configurations across multiple elements.<br> </p> <pre class="brush:php;toolbar:false">const AnimatedList = () => { const listVariants = { hidden: { opacity: 0, y: 20 }, visible: { opacity: 1, y: 0, transition: { staggerChildren: 0.2, }, }, }; const itemVariants = { visible: { opacity: 1 }, hidden: { opacity: 0 }, }; return ( <motion.ul initial="hidden" animate="visible" variants={listVariants}> {[1, 2, 3].map((item) => ( <motion.li key={item} variants={itemVariants}> Item {item} </motion.li> ))} </motion.ul> ); };
By default, all the motion props will be filtered out while passing it to the React component. The animation will be applied to the component, but you cannot access the props in the React.
To access the motion props, pass the flag forwardMotionProps: true while creating the motion component.
const ReactComponent = (props) => { return <button {...props}>ClickMe>/button>; }; const MotionComponent = motion.create(ReactComponent); const FadingButton2 = () => { return ( <MotionComponent initial={{ opacity: 0 }} animate={{ opacity: 1 }} exit={{ opacity: 0 }} transition={{ duration: 3 }} > Click Me </MotionComponent> ); };
The motion.create() function also accepts a string that will create the motion component of a custom DOM element.
const MotionComponent = motion.create(ReactComponent, { forwardMotionProps: true, });
Note: Avoid using the motion.create() in the React lifecycle methods like (useEffect), as this will create a new component every time the lifecycle method is fired.
Now that you have a good idea of how Framer Motion works and its APIs, let’s see some examples of how you can use it for common animation.
Examples
A fading button
npm install framer-motion
- initial: Sets the initial state of the button opacity:0, when the element is not the viewport.
- animate: Sets the state of the button to opacity:1 when the element is in the viewport.
- transition: Configures the animation transition; the button will take one second to go from opacity:0 to opacity:1
- exit: Sets the state of the button when the element is getting out of the viewport.
The exit property takes effect only when wrapped in the AnimatePresence component.
yarn add framer-motion
AnimatePresence affects the direct children, which are motion components that are being removed from the React component tree.
This can be when the component is updating on the lifecycle change (mount, update, unmount)
// On Client side import { motion } from "motion/react" // On Server-side import * as motion from "motion/react-client"
Its key changes
<motion.div className="card" />
Children are added or removed from the list.
<motion.button initial={{opacity: 0}} animate={{opacity: 1}} transition={{duration: 1}} exit={{opacity: 0}} > Click Me </motion.button>
Slide-in sidebar
import { motion, useMotionValue } from "framer-motion"; const MotionState = () => { const xPosition = useMotionValue(0); useEffect(() => { // It won’t trigger a re-render on the component const interval = setInterval(() => { xPosition.set(xPosition.get() + 100); }, 1000); return () => clearInterval(interval); }, []); return ( <motion.div > <p>In the previous example, the <strong>motion.div</strong> element will be translated by 100px on the x position (horizontally, translateX(100px)) at an interval of 1s.</p> <p><strong>Variants:</strong> framer-motion provides support for the variants, which allows the reuse of animation configurations across multiple elements.<br> </p> <pre class="brush:php;toolbar:false">const AnimatedList = () => { const listVariants = { hidden: { opacity: 0, y: 20 }, visible: { opacity: 1, y: 0, transition: { staggerChildren: 0.2, }, }, }; const itemVariants = { visible: { opacity: 1 }, hidden: { opacity: 0 }, }; return ( <motion.ul initial="hidden" animate="visible" variants={listVariants}> {[1, 2, 3].map((item) => ( <motion.li key={item} variants={itemVariants}> Item {item} </motion.li> ))} </motion.ul> ); };
Transition props play a crucial role in animation. They control how animations progress over time. Framer Motion supports multiple properties for smooth animation.
- duration: Length of the animation (in seconds)
- delay: Delays the start of the animation (in seconds)
- ease: A set of easing functions that advocates how the animation will progress (‘ease’, ‘easeIn’, ‘easeInOut’)
Draggable Modal
Framer motion also supports interactive animations with gestures like hover, tap, and drag.
const ReactComponent = (props) => { return <button {...props}>ClickMe>/button>; }; const MotionComponent = motion.create(ReactComponent); const FadingButton2 = () => { return ( <MotionComponent initial={{ opacity: 0 }} animate={{ opacity: 1 }} exit={{ opacity: 0 }} transition={{ duration: 3 }} > Click Me </MotionComponent> ); };
- Page: Wraps the child component with the motion animation.
- Initial, animate, & exit: Handles the appearance and disappearance of the component on the page navigation.
Conclusion
Thanks for reading! Framer Motion is a powerful animation library that makes it easier to add stunning animations to React components. It helps you create a simple animation to handle complex, gesture-based interactions. There are endless possibilities with Framer Motion to add interactions to your React applications.
The new version of Essential Studio? is available for existing customers on the License and Downloads page. If you’re new, sign up for our 30-day free trial to explore our features.
Feel free to contact us through our support forum, support portal, or feedback portal. We’re always here to assist you!
Related Blogs
- Top 5 React PDF Viewers for Smooth Document Handling
- Top 5 React Chart Libraries for 2025
- Vite.js: Build Faster Frontends
- RxJS for React: Unlocking Reactive States
The above is the detailed content of Effortless React Animation: A Guide to Framer Motion. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undress AI Tool
Undress images for free

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

The following points should be noted when processing dates and time in JavaScript: 1. There are many ways to create Date objects. It is recommended to use ISO format strings to ensure compatibility; 2. Get and set time information can be obtained and set methods, and note that the month starts from 0; 3. Manually formatting dates requires strings, and third-party libraries can also be used; 4. It is recommended to use libraries that support time zones, such as Luxon. Mastering these key points can effectively avoid common mistakes.

PlacingtagsatthebottomofablogpostorwebpageservespracticalpurposesforSEO,userexperience,anddesign.1.IthelpswithSEObyallowingsearchenginestoaccesskeyword-relevanttagswithoutclutteringthemaincontent.2.Itimprovesuserexperiencebykeepingthefocusonthearticl

Event capture and bubble are two stages of event propagation in DOM. Capture is from the top layer to the target element, and bubble is from the target element to the top layer. 1. Event capture is implemented by setting the useCapture parameter of addEventListener to true; 2. Event bubble is the default behavior, useCapture is set to false or omitted; 3. Event propagation can be used to prevent event propagation; 4. Event bubbling supports event delegation to improve dynamic content processing efficiency; 5. Capture can be used to intercept events in advance, such as logging or error processing. Understanding these two phases helps to accurately control the timing and how JavaScript responds to user operations.

If JavaScript applications load slowly and have poor performance, the problem is that the payload is too large. Solutions include: 1. Use code splitting (CodeSplitting), split the large bundle into multiple small files through React.lazy() or build tools, and load it as needed to reduce the first download; 2. Remove unused code (TreeShaking), use the ES6 module mechanism to clear "dead code" to ensure that the introduced libraries support this feature; 3. Compress and merge resource files, enable Gzip/Brotli and Terser to compress JS, reasonably merge files and optimize static resources; 4. Replace heavy-duty dependencies and choose lightweight libraries such as day.js and fetch

The main difference between ES module and CommonJS is the loading method and usage scenario. 1.CommonJS is synchronously loaded, suitable for Node.js server-side environment; 2.ES module is asynchronously loaded, suitable for network environments such as browsers; 3. Syntax, ES module uses import/export and must be located in the top-level scope, while CommonJS uses require/module.exports, which can be called dynamically at runtime; 4.CommonJS is widely used in old versions of Node.js and libraries that rely on it such as Express, while ES modules are suitable for modern front-end frameworks and Node.jsv14; 5. Although it can be mixed, it can easily cause problems.

There are three common ways to initiate HTTP requests in Node.js: use built-in modules, axios, and node-fetch. 1. Use the built-in http/https module without dependencies, which is suitable for basic scenarios, but requires manual processing of data stitching and error monitoring, such as using https.get() to obtain data or send POST requests through .write(); 2.axios is a third-party library based on Promise. It has concise syntax and powerful functions, supports async/await, automatic JSON conversion, interceptor, etc. It is recommended to simplify asynchronous request operations; 3.node-fetch provides a style similar to browser fetch, based on Promise and simple syntax

To write clean and maintainable JavaScript code, the following four points should be followed: 1. Use clear and consistent naming specifications, variable names are used with nouns such as count, function names are started with verbs such as fetchData(), and class names are used with PascalCase such as UserProfile; 2. Avoid excessively long functions and side effects, each function only does one thing, such as splitting update user information into formatUser, saveUser and renderUser; 3. Use modularity and componentization reasonably, such as splitting the page into UserProfile, UserStats and other widgets in React; 4. Write comments and documents until the time, focusing on explaining the key logic and algorithm selection

JavaScript's garbage collection mechanism automatically manages memory through a tag-clearing algorithm to reduce the risk of memory leakage. The engine traverses and marks the active object from the root object, and unmarked is treated as garbage and cleared. For example, when the object is no longer referenced (such as setting the variable to null), it will be released in the next round of recycling. Common causes of memory leaks include: ① Uncleared timers or event listeners; ② References to external variables in closures; ③ Global variables continue to hold a large amount of data. The V8 engine optimizes recycling efficiency through strategies such as generational recycling, incremental marking, parallel/concurrent recycling, and reduces the main thread blocking time. During development, unnecessary global references should be avoided and object associations should be promptly decorated to improve performance and stability.
