logo

アニメーションでふわっと浮き出るテキストを実装した

react

framer-motion というライブラリを利用して、ふわっと浮き出るテキストを実装していきます。このコードもしかしたら、どこかから拾ってきたやつかもしれないです…😓まずはインストールから$ npm install --save framer-motionコンポーネントimport { motion, MotionStyle } from 'framer-motion';export const Animation = ({ children, className, style, duration,}: { children: React.ReactNode; classNam

Date
Read moreアニメーションでふわっと浮き出るテキストを実装した