I'm currently testing out animate.css for my project.
Here's a snippet of my code:
<h2 class="lazyload animate__animated animate__rotateInDownLeft" data-link="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css">Lorem ipsum</h2>
Don't worry about animate.css being loaded lazily in this case.
You can check out my page here:
The h2 element we are focusing on is the one at the bottom with the text "Lorem ipsum".
The Issue
Everything works fine when I reload the screen with the h2 already visible.
However, what I want to achieve is an animation effect while scrolling - the h2 should start moving only when it comes into view as you scroll down.
Is there a way to make this happen?