Design Converter
Education
Developer Advocate
Last updated on Oct 25, 2023
Last updated on Oct 5, 2023
The requestAnimationFrame method in React is a powerful tool that allows developers to create smooth animations and execute callback functions at the optimal time for rendering updates. It's a part of the Window interface in JavaScript, and it's used to tell the browser that you wish to perform an animation. The browser then calls the specified callback function before the next repaint.
In most cases, React requestAnimationFrame is used to animate DOM elements smoothly. The method takes a single argument, a callback function, which will be executed before the next repaint. The callback function itself also receives a single argument, a DOMHighResTimeStamp, which indicates the current time when callbacks queued by requestAnimationFrame begin to fire.
1 function animate(timestamp) { 2 // Animation code goes here 3 requestAnimationFrame(animate); 4 } 5 requestAnimationFrame(animate); 6
In the above example, the animate function is called before the browser's next repaint. The requestAnimationFrame method is called recursively to create a new animation frame for each browser repaint, creating a smooth animation cycle.
While both animate and requestAnimationFrame are used to create animations, they serve different purposes and work in different ways. The animate function is a method that you define to create the animation, while requestAnimationFrame is a browser API that controls the timing of the animation.
The animate function typically contains the logic to update the state of the animation at each frame. This could involve changing CSS properties, moving an element's position, or any other changes that create the illusion of movement.
On the other hand, requestAnimationFrame is a method provided by the browser that accepts a callback function as an argument. This callback function is then called before the next repaint, allowing for smooth animations. The requestAnimationFrame method can be used to call the animate function at the optimal time for updates, ensuring the smoothest possible animation.
1 function animate(timestamp) { 2 // Animation code goes here 3 requestAnimationFrame(animate); 4 } 5 requestAnimationFrame(animate); 6
In the above example, React requestAnimationFrame is used to call the animate function before each repaint, creating a smooth animation. The animate function contains the logic for the animation, which is executed at each frame.
In React, requestAnimationFrame can be used in combination with the useEffect hook to create animations in functional components. The useEffect hook allows you to perform side effects in function components, and it's a perfect place to start and stop animations.
Here's an example of how you can use requestAnimationFrame in a React component:
1 import React, { useRef, useEffect } from 'react'; 2 3 function ExampleComponent() { 4 const requestId = useRef(); 5 6 const animate = (timestamp) => { 7 // Animation code goes here 8 requestId.current = requestAnimationFrame(animate); 9 }; 10 11 useEffect(() => { 12 requestId.current = requestAnimationFrame(animate); 13 return () => { 14 cancelAnimationFrame(requestId.current); 15 }; 16 }, []); 17 18 return ( 19 // Rendered component goes here 20 ); 21 } 22
In this example, the requestAnimationFrame method is used to start the animation when the component mounts, and the cancelAnimationFrame method is used to stop the animation when the component unmounts. The requestId returned by requestAnimationFrame is stored in a useRef hook, allowing it to persist across re-renders of the component.
The useLayoutEffect hook in React is used to read layout from the DOM and synchronously re-render. This makes it perfect for animations that need to be in sync with the DOM, but it can cause blocking in large components.
On the other hand, requestAnimationFrame is used to create smooth animations by calling a callback function before each repaint. This allows for animations to be in sync with the browser's refresh rate, providing a smoother user experience.
While useLayoutEffect can cause blocking in large components, requestAnimationFrame does not block the main thread, making it a better choice for animations in most cases. However, useLayoutEffect can still be useful for animations that need to be in sync with the DOM, such as transitions that depend on the layout.
Here's an example of how you can use requestAnimationFrame in a React component:
1 import React, { useRef, useEffect } from 'react'; 2 3 function ExampleComponent() { 4 const requestId = useRef(); 5 6 const animate = (timestamp) => { 7 // Animation code goes here 8 requestId.current = requestAnimationFrame(animate); 9 }; 10 11 useEffect(() => { 12 requestId.current = requestAnimationFrame(animate); 13 return () => { 14 cancelAnimationFrame(requestId.current); 15 }; 16 }, []); 17 18 return ( 19 // Rendered component goes here 20 ); 21 } 22
In this example, the requestAnimationFrame method is used to start the animation when the component mounts, and the cancelAnimationFrame method is used to stop the animation when the component unmounts. The requestId returned by requestAnimationFrame is stored in a useRef hook, allowing it to persist across re-renders of the component.
Handling scroll events can be a challenging task in React due to the performance implications. However, requestAnimationFrame can be used to create a smooth scrolling experience by throttling the scroll event handler.
Here's an example of how you can use requestAnimationFrame to handle scroll events in a React component:
1 import React, { useRef, useEffect } from 'react'; 2 3 function ExampleComponent() { 4 const requestId = useRef(); 5 6 const handleScroll = () => { 7 // Scroll event handler code goes here 8 requestId.current = requestAnimationFrame(handleScroll); 9 }; 10 11 useEffect(() => { 12 window.addEventListener('scroll', handleScroll); 13 return () => { 14 cancelAnimationFrame(requestId.current); 15 window.removeEventListener('scroll', handleScroll); 16 }; 17 }, []); 18 19 return ( 20 // Rendered component goes here 21 ); 22 } 23
In this example, the requestAnimationFrame method is used to throttle the scroll event handler, ensuring that it's only called before each repaint. This provides a smoother user experience and prevents performance issues that can occur when handling scroll events.
In conclusion, requestAnimationFrame is a powerful tool in React that can be used to create smooth animations and handle events efficiently. By understanding how it works and how to use it effectively, you can create more performant and user-friendly applications.
Tired of manually designing screens, coding on weekends, and technical debt? Let DhiWise handle it for you!
You can build an e-commerce store, healthcare app, portfolio, blogging website, social media or admin panel right away. Use our library of 40+ pre-built free templates to create your first application using DhiWise.