
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
react-scroll-parallax
Advanced tools
React components to create parallax scroll effects for banners, images or any other DOM elements.
React components to create parallax scroll effects for banners, images or any other DOM elements. Uses a single scroll listener via Parallax Controller to add vertical or horizontal scrolling based offsets to elements based on their position in the viewport. Optimized to reduce jank on scroll and works with universal (server-side rendered) React apps.
If you're coming from V2, here's a migration guide.
See the Storybook for example usage of each component
Some demo websites using Parallax components
With npm
npm i react-scroll-parallax --save
or yarn
yarn add react-scroll-parallax
<Parallax>
<ParallaxBanner>
<ParallaxProvider>
The <ParallaxProvider>
must wrap the component tree that contains all <Parallax>
components. This should be a top level component like <App>
. For example:
import { ParallaxProvider } from 'react-scroll-parallax';
function App() {
render() {
return (
<ParallaxProvider>
<AppRoutes />
</ParallaxProvider>
);
}
}
Then import the Parallax
component and use it anywhere within the provider. Here's an example that will transform the element on the translateY
axis starting at -20%
and ending at 20%
(translateY = [-20, 20]
*percent is assumed with no provided unit).
import { Parallax } from 'react-scroll-parallax';
const VerticalParallax = () => (
<Parallax translateY={[-20, 20]}>
<div className="my-thing" />
</Parallax>
);
Example with transforms on the translateX
axis starting at -100px
and ending at 200px
(translateX = ['-100px', '200px']
).
import { Parallax } from 'react-scroll-parallax';
const HorizontalParallax = () => (
<Parallax translateX={['-100px', '200px']}>
<div className="my-thing" />
</Parallax>
);
TODO: Explain how and when effects are applied with some illustrations and demos.
fixed
positioning you will likely want to set the startScroll
and endScroll
values manually, or use a targetElement
to indicate scroll progress.parallaxController.update()
method from any child component of the <ParallaxProvider />
via context. More details on how here: Parallax Controller Context.If you're encountering issues like the parallax element jumping around or becoming stuck, there's a few likely culprits. Since this lib caches important positioning states it's possible for these to be outdated and incorrect. The most likely cause for this type of problem is the result of images loading and increasing the height of an element and/or the page. This can be fixed easily by updating the cache.
Considerations have been taken to reduce jank -- please read more here on how this is done
Even with optimizations scroll effects can cause jank. It's also important to keep in mind that scroll effects are usually not critical to a users experience and sometimes can be annoying.
If you use these components make sure you seriously consider the following:
Follow the above and you should keep scrolling smooth and users happy.
FAQs
React hooks and components to create parallax scroll effects for banners, images or any other DOM elements.
The npm package react-scroll-parallax receives a total of 30,045 weekly downloads. As such, react-scroll-parallax popularity was classified as popular.
We found that react-scroll-parallax demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.