Answers for "animate css how to use"

CSS
0

animate.css

.my-element {
  display: inline-block;
  margin: 0 0.5rem;

  animation: bounce; /* referring directly to the animation's @keyframe declaration */
  animation-duration: 3s; /* don't forget to set a duration! */
}
Posted by: Guest on May-17-2021

Browse Popular Code Answers by Language