React动画

JSReact

🌙 使用 framer-motion

npm i framer-motion
1
import { motion } from "framer-motion"

export const MyComponent = ({ isVisible }) => (
    <motion.div animate={{ opacity: isVisible ? 1 : 0 }} />
)
1
2
3
4
5

framer-motion (opens new window)

Framer Motion 官网 (opens new window)

Framer Motion Tutorial (opens new window)