Lightweight lib for smooth parallax image scroll effect, written in vanilla JS with no dependencies.
$ npm install smooth-parallax.jsTo make it works your img element needs to be wrapped.
<div id="wrapper-id">
<img src="path-to-your-image.jpg" alt="Some awesome image">
</div>Then import SmoothParallax into your js file.
import SmoothParallax from 'smooth-parallax.js';
const parallax = new SmoothParallax(document.getElementByID('wrapper-id'));There are the two options that you can edit, such as:
const parallax = new SmoothParallax(element, {
speed: 10,
scale: 1.2,
});speed- speed of image translation under the wrapper. Default value forspeedis 10. Please adapt the speed of translation according to your element size.scale- in order to translate your image, it needs to be slightly bigger than wrapper. So with scale we make sure that your image overlaps behind wrapper. Default value forscaleis 1.2
Licensed under the MIT license.