Springy Animated Modals // Framer Motion & React Tutorial for Beginners

preview_player
Показать описание

#react #animation #learntocode

🔥 Get More Content - Upgrade to PRO

Use code lORhwXd2 for 25% off your first payment.

🔗 Resources

📚 Chapters

00:00 Intro
00:45 Modal Demo
01:29 Setup Framer
02:26 Animated Button
03:06 CSS vs Framer Motion
03:28 Backdrop
05:37 Modal
07:05 Animation Settings
07:58 Spring Damping and Stiffness
08:41 Trigger It
09:41 Animate Presence
10:36 Drag It

🎨 My Editor Settings

- Atom One Dark
- vscode-icons
- Fira Code Font

🔖 Topics Covered

- Framer Tutorial
- How to build Animated Modals in React
- Spring Animation Physics
- CSS Modal Styling
- Animated Buttons in React
- JavaScript Animation Techniques

🎬 Credits

Рекомендации по теме
Комментарии
Автор

I’m so happy whenever Fireship posts a new video.

captainlennyjapan
Автор

Once I learned framer motion a year ago, I never went back to another reaction library. It's very intuitive to use !

lThePotatoCrew
Автор

Jeff, this video could not have come at a better time for me; I'm rebuilding my site and of the things I'm focusing on is better quality animations, I WAS going to spend all night fixing my react-spring components, but you made framer seem approachable and I gave it a shot. The framer implementation makes way more sense, there are less re-renders in the animated components I built, it is fantastic, thank you so much 💖

CorporalSaturn
Автор

Framer motion is such a blessing. Great video Jeff and Klutch ❤️

RohitPrakash
Автор

The long awaited React Animation at last 🥰
Thanks a lot ❤️

talhaibnemahmud
Автор

How have I not heard of framer motion? This tut was amazing. Thank you Fireship!

PowderedToastMaaaan
Автор

These 3 years of programming I have never seen a Youtube channel that provides pro tips. You are the first one, thanks so much

jcv_
Автор

That is so weird. I was looking for Framer tutorial for my current project and the next thing Fireship uploads one.
Thanks man
#fireshipprovides

chetanjain
Автор

Always coming in clutch with the videos, gonna try this on my modal in my project! :)

alegherix
Автор

I made yesterday and I barely have to wait a day until your tutorial!!! Thanks

tirmes
Автор

Thank you for these fun and engaging videos, technically they look great too.

sweet_potato
Автор

excellent as always 🔥

thanks for another great tutorial!

gjb
Автор

Another very cool React library to do what Svelte does natively 😌🧡

ShafterPlay
Автор

Thank you. This gave me the push to express.js my gratefulness with a Pro membership.

jhannes
Автор

You know what I want. Fireship 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥

abhinav.sharma
Автор

I love this channel, really help me a lot

wisdomcube
Автор

Omg I'm obsessed with framer motion.

ninjaasmoke
Автор

Just what I was in need for my project.

oshanshrestha
Автор

Amazing content bro, thanks for all your work

cristobalfigueroa
Автор

For those who wanna test this lib, with little animations, you can also pass the initial and animate state directly in the animate property with an array:
animate={{ property: [initialValue, animateToValue] }} =>
for example
<motion.p
animate={{ opacity: [0, 1], y: [30, 0] }}
exit={{opacity: [1, 0]}}
transition={{ duration: .4 }}
> text </motion.p>

VBDesignsable