Css_animation
Animation:------
@keyframes- Keyframes hold what styles the element will have at certain times.
animation-nameanimation-durationanimation-delayanimation-iteration-countanimation-directionanimation-timing-functionanimation-fill-modeanimation
@keyframes example {
from {background-color: red;}
to {background-color: yellow;}
}
from {background-color: red;}
to {background-color: yellow;}
}
@keyframes example {
from {cssproperties}
to {cssproperties}
}
from {cssproperties}
to {cssproperties}
}
@keyframes example {
0% {css properties}
100% {css propereties}
}
0% {css properties}
100% {css propereties}
}
Comments
Post a Comment