amirhosseinrahmati / before-after-comparison-slider

Before/After comparison slider + mobile touch swipe with VanillaJS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Before <|> After Comparison Slider


Lightweight image comparison slider built with VanillaJS

before and after comparison slider

Initializing

Import JavaScript code in your html: <script src="js/script.js"></script>

Then give an id for each div element which has bal-container class:

<div id="one" class="bal-container">
...
<div id="two" class="bal-container">
...

At the end, initialize every element with the given id:

<script>
    new BeforeAfter({
        id: '#one'
    });
    new BeforeAfter({
        id: '#two'
    });
    ...
</script>

About

Before/After comparison slider + mobile touch swipe with VanillaJS

License:MIT License


Languages

Language:JavaScript 100.0%