I'd really like some things to animate onto screen when I scroll down to them, as they do here...
https://michalsnik.github.io/aos/
The problem is my site is actually nested inside a div called 'main-content' with seperate divs for the side bar and top bar.
It would appear from this question and answer that its not possible to achieve what I want inside a nested scroller, but this was 3 years ago and I'm just wondering if there is a potential workaround using aos or wow.js or something similar.
I've tried a couple and had no luck but I feel like there must be a way to achieve this.
Thanks in advance!
IntersectionObserver makes this kid of behavior easy to implement yourself using vanilla JavaScript. It's a fairly new API but there's a polyfill.
If you wanted to track your own scroll container instead of the document you can set the
root
to something else.