Skip to content Skip to sidebar Skip to footer

Does Intersectionobserver Support Horizontal Scrolling Observation?

I made a couple of vertical scroll IntersectionObserver modules, but I'm interested in horizontal scroll (root will be a div and observation target will be an img). I want to obser

Solution 1:

To get an IntersectionObserver only in the x axis you can add to the options: rootMargin: "4000px 0px 4000px 0px".


Post a Comment for "Does Intersectionobserver Support Horizontal Scrolling Observation?"