Answers for "css-animations.html"

CSS
0

CSS animation

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

@keyframes colorful {
  0% {
    background-color: blue;
  }
  100% {
    background-color: yellow;
  }
}
Posted by: Guest on January-16-2022
0

css animation

<div class="cssanimation hu__hu__"> Example </div>
Posted by: Guest on February-02-2022

Browse Popular Code Answers by Language