Notice
Recent Posts
Recent Comments
Link
«   2025/05   »
1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31
Archives
Today
Total
관리 메뉴

new_bird-hyun

React - framer-motion으로 페이지 전환 애니메이션 본문

코딩 공부

React - framer-motion으로 페이지 전환 애니메이션

새혀니 2025. 4. 13. 12:44

npm install framer-motion

import { motion } from 'framer-motion';

export default function AnimatedBox() {
  return (
    <motion.div
      initial={{ opacity: 0, y: 50 }}
      animate={{ opacity: 1, y: 0 }}
      exit={{ opacity: 0 }}
      transition={{ duration: 0.5 }}
    >
      <h2>애니메이션 등장 요소</h2>
    </motion.div>
  );
}