I am using React Spring Parallax to build sticky scrolling sections, see my demo here: https://codesandbox.io/s/parallax-sticky-scroll-2zd58
Currently, this demo is functioning how I need it to except for the scrollTo() being triggered by clicking the button. I want to trigger the scrollTo function when a user scrolls up or down, however, I can not figure out how to implement onScroll in react functional components.
I've looked at the following questions here but they did not satisfy my issue: onScroll in React functional component onScroll React cannot trigger
all you need is change scrolling to be true. I think that's all you need
like this :
this your code before
UPDATED
as to be discussed may be this is what you want to achieve.
There's no onScroll props in ParallaxLayer based Documentation here React-Spring. So i think you need to make a function to listen scroll activity in the browser like this sample. hope it can help you.
This is the sandbox for sample
Codesandbox - react-parallax Scroll Listen