position : absolute
position : relative
position : fixed
position : sticky
float : left
float : righ
display : block
display : none
display : Flex
display : GRID
An act or instance of animating or enlivening. the state or condition of being animated.
transition-property
transition-timing-function
transition-delay
transition
div{
transition-property: width;
transition-duration: 2s;
transition-timing-function: linear;
transition-delay: 1s;
}
div{
transition: width 2s linear 1s;
}
@keyframes blind {
from {background-color: red;}
to {background-color: yellow;}
}
@keyframes blind {
0% {background-color: red;}
100% {background-color: yellow;}
}
div{
animation-name:blind;
animation-duration:1s;
animation-delay:1s;
animation-iteration-count:3;
animation-direction:normal;
animation-timing-function:ease;
}