animation on scroll js code example
Example 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);
}
Example 2: aos
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init();
</script>
Example 3: aos
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />