Animation React Production

Framer Motion

React生产级动画库,让界面动起来

🎯 核心理念

声明式动画——用简单的API实现复杂的交互动画。

🧩 核心API

// 基础动画 <motion.div initial={{ opacity: 0, y: 20 }} animate={{ opacity: 1, y: 0 }} transition={{ duration: 0.5 }} /> // 手势动画 <motion.button whileHover={{ scale: 1.05 }} whileTap={{ scale: 0.95 }} > // 布局动画 <motion.div layout> 内容变化时自动动画 </motion.div>

✨ 动画类型