🌙 使用 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
2
3
4
5
framer-motion (opens new window)
npm i framer-motion
import { motion } from "framer-motion"
export const MyComponent = ({ isVisible }) => (
<motion.div animate={{ opacity: isVisible ? 1 : 0 }} />
)
framer-motion (opens new window)