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.
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.
Leave a Reply