I'm becoming predictable. Again, I haven't found component I like, so I wrote my own.
This time, I've build React component for parallax (on scroll) effects. Check the live demo. It is called Plx
, it is open source and available on GitHub and npm.
What it does
So far in my career, I've built so many parallax components. Parallax is actually wrong term (the effect whereby the position or direction of an object appears to differ when viewed from different positions, e.g. through the viewfinder and the lens of a camera.) here, but it got accepted by development community.
Designers love them and users are fascinated by fancy effects. Simply explained as you scroll the page down something is changed relative to the scroll position. For example, as you scroll you can make things explode! Just check the demo.
There is a lot of solutions out there, but IMHO they are usually bloated or not performant or complicated to use. And as I'm using React a lot, I decided to collect what I have learned about implementing on scroll effects in React and create standalone component. Most of the code in this component is pulled out from my existing projects and glued together.
Performance
Plx is really performant, thanks to a few optimizations.
First and the most important one - it is not listening to window scroll event. It is using simple scroll manager, which checks if scroll has changed every 16ms (to get smooth 60fps). When scroll changes it broadcasts custom event. All of the Plx components are listening to this event and share the same scroll manager (it is singleton). Singleton is created with the first component, and destroyed when last one unmounts.
Another optimization is that elements are not animated when not in viewport. Actually, they are not animated if they are more than 50px outside of viewport. So component "gets ready" 50px before it enters the viewport. You can force animating element even outside of viewport by setting animateWhenNotInViewport
prop to true
.
Beside that, every update is done in requestAnimationFrame
.
Still you need to avoid common "don't dos" when making a parallax page:
- Avoid
background-size: cover
- Don’t animate massive images or dramatically resize them
- Avoid animating 100 things at once
- Only use properties that are cheap for browsers to animate - opacity and transform (scale, rotate, skew, scale)
Read this great article to find out more (that is where I got my initial inspiration).
Supported effects / properties
Plx supports every CSS property that has numeric value ( opacity
, height
, padding
(The most performant properties to animate are opactity
and transform
. So stick to those two to keep your parallax effects performant. Of course you can animate something else here and there, but be careful and test it throughly.) ...). I wrote a formula (this sounds way more sciency than it is) which calculates property value depending on the scroll position and given input values.
It also supports transform
, and you can pass multiple transform functions (translateX
, rotate
, skewZ
...). You can even animate colors on scroll (background, text and border colors are supported)! Colors are broken down to their R/G/B/A values, and then same formula is applied to each one of them.
At the end
What are you waiting?! Get it from npm and start using it :)
$ npm install --save react-plx
Documentation is available on GitHub.
;
;
Feel free to contribute, cheers!
Comments (8)