Add class=hidden
to every section we want to animate
Create an HTML Intersection Observer
Use CSS Transition to animate
Not everyone wants to watch your stupid animation again and again, use this media query to supress it:
@media (prefers-reduced-motion) {
.hidden {
transition: none;
}
}