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 Framer Motion example animating a div element scaling up and rotating on render.
# framer_motion/demo/App.jsx
import React from 'react';
import { motion } from 'framer-motion';
function App() {
return (
<motion.div
style={{ width: 100, height: 100, backgroundColor: 'blue' }}
animate={{ scale: 1.5, rotate: 360 }}
duration={2}
/>
);
}
export default App;Framer Motion is a production-ready animation library for React, designed to create smooth, declarative animations, gestures, and transitions in web applications.
Origin & Creator
Framer Motion was developed by Framer B.V., the same team behind the Framer prototyping tool (2018-present).
Industrial Note
Framer Motion is used extensively in interactive web apps, SaaS dashboards, landing pages, micro-interactions, and complex React UI/UX animations.