Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 530 Bytes

README.md

File metadata and controls

26 lines (17 loc) · 530 Bytes

Animate while scrolling

Live Demo

Step 1

Add class=hidden to every section we want to animate

Step 2

Create an HTML Intersection Observer

Step 3

Use CSS Transition to animate

Step 4 (optional)

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;
  }
}