simpleParallax.js is a lightweight and easy-to-use JS library that adds parallax animations to any image.
npm install simple-parallax-js
sh
#npm
npm install simple-parallax-js
#yarn
yarn add simple-parallax-js
`
Import it:
`javascript
//React version
import SimpleParallax from 'simple-parallax-js';
//Vanilla Version
import SimpleParallax from "simple-parallax-js/vanilla";
`
Initialization
$3
Simply add the following JavaScript code:
`javascript
import SimpleParallax from "simple-parallax-js";
const Component = () => (
)
`
$3
Giving the following HTML :
`html
`
simply add the following JavaScript code :
`javascript
const image = document.getElementsByClassName('thumbnail');
new SimpleParallax(image);
`
You can also choose to apply the parallax on multiple images :
`javascript
const images = document.querySelectorAll('img');
new SimpleParallax(images);
`
Once simpleparallax has been correctly initialized, it adds the `simple-parallax-initialized` class on the container.
simpleParallax now works with video :
`html
`
`javascript
var video = document.getElementsByTagName('video');
new SimpleParallax(video);
`
Settings
Setting | Type | Default | Hint
--- | --- | --- | ---
orientation | String | up | up - right - down - left - up left - up right - down left - down right
scale | Number | 1.3 | need to be above 1
overflow | Boolean | false |
delay | Number | 0 | the delay is in second Watch out, sometimes this delay is causing issue on iOS devices #47
transition | String | '' | any CSS transition
maxTransition | Number | 0 | it should be a percentage between 1 and 99
customContainer | String or Node | '' | (Vanilla version only)
customWrapper | String | '' | the selector of the custom wrapper (Vanilla version only)
You can apply these settings with the following JS code :
$3
`javascript
import SimpleParallax from "simple-parallax-js";
const Component = () => (
delay={0}
orientation={"down"}
scale={1.3}
overflow
maxTransition={60}
>
)
`
$3
`javascript
import SimpleParallax from "simple-parallax-js";
import Image from "next/image";
const Component = () => (
delay={0}
orientation={"down"}
scale={1.3}
overflow
maxTransition={60}
>
)
`
$3
`javascript
var images = document.querySelectorAll('.thumbnail');
new SimpleParallax(images, {
delay: 0,
orientation: 'down',
scale: 1.3,
overflow: true,
customContainer: '.container',
customWrapper: '.wrapper'
});
`
$3
The parallax effect's orientation, or direction, can be customized. If you choose up, the image will move from bottom to top as you scroll down, and from top to bottom as you scroll up. This same logic applies for all other orientations, including right, down, left, up left, up right, down left, and down right. If two directions are combined, such as down right, the image will move diagonally.
$3
The higher the scale setting, the more pronounced the parallax effect becomes. However, this can cause the image quality to diminish. To mitigate this, if the scale is set at 1.5 and your image width is 500px, simply multiply 500 by 1.5 to get 750. You can then use a 750px image in place of your 500px one to maintain image quality. More information can be found in the case study linked here.
$3
By default, the image scales to create a parallax effect without any overflow on the layout - for a better understanding, review the case study. When overflow is set to true, the image will translate beyond its natural flow, potentially overlapping your content.
$3
Setting a delay prolongs the image's translation even after the user has stopped scrolling, creating a pleasing effect. This delay is measured in seconds. Watch out, sometimes this delay is causing issue on iOS devices #47
$3
The transition setting is linked with the delay setting. It applies any CSS transition to the delay setting, such as ease or ease-in-out.
$3
The maxTransition setting controls the extent of the parallax animation. By default, it translates from 0% to 100% of the user's viewport. You can adjust this to any percentage.
$3
This is the source of the image. It can be a local path or a URL.
$3
Parallax calculations default to the body scroll percentage. However, images may be in a container with its own scroll area. For accurate calculations, set a custom container.
$3
In some instances, you might want to use your own wrapper instead of the plugin's. Specifying a custom wrapper will add the simpleParallax class and an overflow: hidden style.
Methods
$3
Refresh a simpleParallax instance (to recalculate all the positions) :
`javascript
var images = document.querySelectorAll('img');
var instance = new SimpleParallax(images);
instance.refresh();
`
By default, the refresh method is fired at every window resize.
$3
Destroy a simpleParallax instance:
`javascript
var images = document.querySelectorAll('img');
var instance = new SimpleParallax(images);
instance.destroy();
``