Code Monkey home page Code Monkey logo

definitive-image-comparison-slider's Introduction

Dics: Definitive Image Comparison Slider

Codictados

Made by Abel Cabeza Román, a Codictados developer.

DEMO

See examples

Description

Light Vanilla Javascript library to compare multiples images with sliders. Also, you can add text and filters to your images.

Installation

Download the library.

npm i dics

And import it to your project.

<link rel="stylesheet" href="dics.css">
<script src="dics.js"></script>

Usage

You only have to create a container and add your images. You can add all images you want!! If you add the alt attribute, you will view the text in the image comparison.

<div class="b-dics">
    <img src="01.jpg">
    <img src="02.jpg" alt="Japan Yellow">
    <img src="03.jpg" alt="Japan Orange">
    <img src="04.jpg" alt="Japan Black & White">
</div>

Finally, you need to initialize the component like this.

new Dics({
    container: document.querySelector('.b-dics')
});

Or this.

new Dics({
    container: document.querySelectorAll('.b-dics'),
    linesOrientation: 'vertical',
    textPosition: 'left',
    arrayBackgroundColorText: ['#000000', '#FFFFFF'],
    arrayColorText: ['#FFFFFF', '#000000'],
    linesColor: 'rgb(0,0,0)'
});

Options

If you want you can include different options.

Option Description Example
container REQUIRED: HTML container document.querySelector('.b-dics')
filters Array of CSS string filters ['blur(3px)', 'grayscale(1)', 'sepia(1)', 'saturate(3)']
hideTexts Show text only when you hover the image container true,false
textPosition Set the prefer text position 'center','top', 'right', 'bottom', 'left'
linesOrientation Change the orientation of lines 'horizontal','vertical'
rotate Rotate the image container (not too useful but it's a beatiful effect. String of rotate CSS rule) '45deg'
arrayBackgroundColorText Change the bacground-color of sections texts with an array ['#000000', '#FFFFFF']
arrayColorText Change the color of texts with an array ['#FFFFFF', '#000000']
linesColor Change the lines and arrows color 'rgb(0,0,0)'

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

definitive-image-comparison-slider's People

Contributors

abelcabezaroman avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.