js animation on scroll 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 animate
<script>
AOS.init();
</script>
Example 3: aos css animation
<div data-aos="zoom-in-left"></div>