Mode:
Duration:
1
Coding works best on desktop or with an external keyboard.
Coding works best on desktop or with an external keyboard.
A basic React Motion example animating a div element moving horizontally using spring physics.
# react_motion/demo/App.jsx
import React from 'react';
import { Motion, spring } from 'react-motion';
function App() {
return (
<Motion defaultStyle={{ x: 0 }} style={{ x: spring(300) }}>
{style => (
<div style={{ width: 100, height: 100, background: 'orange', transform: `translateX(${style.x}px)` }} />
)}
</Motion>
);
}
export default AppReact Motion is a popular animation library for React that uses physics-based animations to create smooth and natural transitions. It provides a simple API to animate components’ styles over time using spring dynamics rather than fixed durations.
Origin & Creator
React Motion was created by Cheng Lou and open-sourced in 2015, becoming widely adopted for physics-based React animations.
Industrial Note
React Motion is used in web apps, dashboards, interactive UIs, and websites where smooth, physics-based motion improves user experience, such as sliding panels, accordions, loaders, and transitions.