Css_animation

 Animation:------

  • @keyframes
  • Keyframes hold what styles the element will have at certain times.
  • animation-name
  • animation-duration
  • animation-delay
  • animation-iteration-count
  • animation-direction
  • animation-timing-function
  • animation-fill-mode
  • animation
@keyframes example {
  from {background-color: red;}
  to {background-color: yellow;}
}
@keyframes example {
  from {cssproperties}
  to {cssproperties}
}
@keyframes example {
  0% {css properties}
  100% {css propereties}
}

Comments

Popular posts from this blog

interview questions js[ Anurag Singh ProCodrr]

reactnative_creation