Enter Animations

๐Ÿ‘จโ€๐Ÿ’ผ Make the logo, h1 and paragraph fade in and slide from the bottom when the page loads.

Keyframes definition

๐Ÿจ Create a slide-up keyframes definition in the . It should:
  • start at 0% opacity and translated down (Y axis) by 20px
  • end up at 100% opacity and back to its normal position.

Animation utilities

๐Ÿจ Create a slide-up animation in the Tailwind config. It should:
  • use the slide-up keyframes
  • animate over a duration of 0.3s
  • use the ease-out timing function

Animating elements

๐Ÿจ Animate the logo, h1 and paragraph using the new slide-up animation utilities you have just created.

Animation delay

๐Ÿ‘จโ€๐Ÿ’ผ The logo should start animating immediately when the page loads.
๐Ÿ‘จโ€๐Ÿ’ผ The h1 tag should wait 0.3s before starting to animate.
๐Ÿ‘จโ€๐Ÿ’ผ The paragraph should wait 0.8s before starting to animate.
๐Ÿฆ‰ You might notice your delayed animations look wonky. The elements show up in their final position until the delay occurs, and then they go through the slide-up animation. You should look into the ๐Ÿ“œ animation-fill-mode CSS property to work around that โ€” it can be defined directly in the animation in the Tailwind theme.
๐Ÿ‘จโ€๐Ÿ’ผ You got this! Remember, you'll be considered a hero to the eyes of the design team if you can pull this off ๐Ÿ’ซ