CSS ANIMATION AND TRANSISTION





CSS3 ALL ANIMATION PROPERTIES !

        div {
  animation-name: myAnimation;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-delay: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-fill-mode: forward;
}
    

CSS3 ALL TRANSISTATION PROPERTY

    The CSS transition property is a shorthand property for:

    transition-property (Required)
    transition-duration (Required)
    transition-timing-function
    transition-delay