Chaining Animations

You can run multiple animations one after another using delays.

Example:

.box {
  animation:
slideIn 1s ease,
fadeIn 1s ease 1s;
}

Practice Task:
Animate a box to slide in first, then fade in text inside it.

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *