scroll animation with animate.css code example
Example 1: animate on scroll
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
Example 2: 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);
}
Example 3: animate on scroll
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>