- Does it use IntersectionObserver?
- Yes — modern, performant. Far better than scroll-event listeners (which fire constantly). The tool generates both the CSS and the observer JS.
- What effects are common?
- Fade-in, slide-up, scale-in, rotate-in. Plus staggered lists (each item animates as it enters).
- Can I use CSS scroll-driven animations?
- Yes — toggle for the new `animation-timeline: scroll()` approach. Chrome/Edge 115+ support; Safari and Firefox catching up.
- Accessibility?
- The generated code respects prefers-reduced-motion — users who prefer stillness see content appear without animation.