0.2.3 • Published 16 days ago

canvas-parallax v0.2.3

Weekly downloads
-
License
MIT
Repository
github
Last release
16 days ago

Canvas Parallax

This class will create a canvas element to draw a parallax background image

Latest Release Notes

The depth parameter has been refined. Initially, it was defined in pixel units. However, to enhance responsiveness and adaptability across different devices, it has been changed to a percentage-based value. After updating, you may need to adjust the depth value to correct the parallax effect.

Example

Canvas Parallax Example on CodePen

Installation

npm i canvas-parallax

Usage

HTML

<section class="banner">
    <img src="https://example.com/image.png" alt="Banner Image" />
</section>

JavaScript

import CanvasParallaxController from 'canvas-parallax';

const banner = document.querySelector('.banner');
const image = banner.querySelector('img');

const CanvasParallax = new CanvasParallaxController({
    // The depth is the pixel movement of the image - 200 is 100px up and 100px down
    depth: 200,
});

Put the canvas into the document

banner.appendChild(CanvasParallax.canvas.element);

We can load image src URLs from the DOM

// The"50% 50%" is the main focus point of the image, it can be set to 0% 0% for top left hand corner or 100% 100% for bottom right hand corner etc.
CanvasParallax.load(image.src, "50% 50%");

Options

OptionTypeDescriptionDefault
alphabooleanWhether or not the canvas needs to be cleared between each render.false
depthnumberThe depth of the parallax effect as a percentage.50
preloadbooleanWhether or not the class will pre-calculate all the positions of the parallaxtrue
throttlenumberThe resize calculations throttle time in milliseconds.100
precisionnumberThe precision of the parallax effect. (I'd suggest keeping this as low as possible, without seeing a stuttering parallax)5

Callbacks

CanvasParallax.on('draw', () => {
    // Do something
});

CanvasParallax.on('resize', () => {
    // Do something
});

License

MIT

0.2.1

21 days ago

0.2.0

21 days ago

0.2.3

16 days ago

0.2.2

21 days ago

0.1.10

28 days ago

0.1.11

28 days ago

0.1.8

28 days ago

0.1.9

28 days ago

0.1.7

1 month ago

0.1.6

2 months ago

0.1.5

2 months ago

0.1.4

2 months ago

0.1.2

2 months ago

0.1.3

2 months ago

0.1.1

3 months ago

0.1.0

4 months ago

0.0.7

4 months ago

0.0.6

4 months ago

0.0.5

4 months ago

0.0.4

4 months ago

0.0.3

4 months ago

0.0.2

4 months ago

0.0.1

4 months ago