{transition:color 2s}
{transition-delay 1s}
linear ease ease-in ease-out ease-in-out
@keyframes name {
from {}
to {}
}
@keyframes name {
0% {}
50% {}
100% {}
}
Yes, change the values of the percentages to when that process should start and the previous one should end.
animation-delay animation-timing- function
animation-direction
animation-iteration-count
animation-fill-mode
whether it plays start to end or end to start;
how many times it should play;
whether it should keep the 0 and 100% properties before and after playing.
div {
animation-name:name
animation-duration:3s
}
To reveal answers, hover over a card for at least 1 second.
Back to Assignments.