I need to achieve a parallax effect where an assortment of things are the "background" layer, like videos, canvases or other interactive things, while walls of text scroll by, and when those texts "end" I need to be able to scroll to the next slide, holding, again, any number of things as its 'background'. See https://i.stack.imgur.com/e4TVG.jpg for a simple reference (smiley = interactive content, rectangle = wall of text).
Is that something I can do with pure CSS? Or do I need to resort to a library like ScrollMagic for this effect?
Use:
background-attachment: fixed;
In essence, the background is "fixed" to the element and when it scrolls up, so does your image.
More info
UPDATE: Position: absolute your element to your parent element.
UPDATE2: Okay, here and here looks promising. Creating custom fiddle.
UPDATE3 Rough draft of JSfiddle. Main logic:
UPDATE4: Updated JSfiddle, additional formatting. The main problem is that it won't "clear" that last section before scrolling the new section.