Answers for "how to run animate.css on scroll"

1

animation on scroll css

svg {
  position: fixed; /* make sure it stays put so we can see it! */

  animation: rotate 1s linear infinite;
  /*animation-play-state: paused;*/
  animation-delay: calc(var(--scroll) * -1s);
}
Posted by: Guest on March-17-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language