I'm looking to find the name of this scrolling effect.
As you scroll, the text on the screen changes, as if you were going through a slideshow. The gif is from this website.
I have an idea of how to implement it, but would prefer to use some js library (ideally for react, but not required) that already implements it. Does anyone have an idea of the name, or some library that has it? Thank you!
It's just called scroll-linked animations.
Typically for website animations, you would want to use CSS keyframes, as it is more performant than using javascript. Though you can always trigger CSS keyframe animations with javascript, and tie it to scroll events to create the above effect.