Liquid & Glitch Effects For Images – LiquidEffect.js

Category: Animation , Javascript | September 30, 2020
Author:rohail6259
Views Total:1,320 views
Official Page:Go to website
Last Update:September 30, 2020
License:MIT

Preview:

Liquid & Glitch Effects For Images – LiquidEffect.js

Description:

LiquidEffect.js is a JavaScript library that makes use of pixi.js library to apply a fancy liquid & glitch effect on images.

How to use it:

1. Load the required pixi.js and pixi-filters libraries on the HTML page.

<script src="https://cdn.jsdelivr.net/npm/pixi.js/dist/pixi.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/pixi-filters/dist/pixi-filters.js"></script>

2. Load the LiquidEffect.js after pixi.js library.

<script src="LiquidEffect.js"></script>

3. Create a container to hold the image.

<div id="example"></div>

4. Initialize the LiquidEffect and determine the path to the target and displacement images.

new LiquidEffect({
    appendTo: "#example",
    image: 'image.jpg',
    displacementImage: "displacement_map.jpg"
});

5. Config the Liquid & Glitch Effects with the following props.

new LiquidEffect({
    appendTo: "#example",
    image: 'image.jpg',
    displacementImage: "displacement_map.jpg",
    displacementScale: 1,
    speed: 1, 
    intensityX: 1.5,
    intensityY: 1.5,
});

You Might Be Interested In:


Leave a Reply