Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

CSS animation

#anim {
  animation-name: colorful;
  animation-duration: 3s;
}

@keyframes colorful {
  0% {
    background-color: blue;
  }
  100% {
    background-color: yellow;
  }
}
Source by www.freecodecamp.org #
 
PREVIOUS NEXT
Tagged: #CSS #animation
ADD COMMENT
Topic
Name
7+2 =