New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

vanilla-js-carousel

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vanilla-js-carousel

Pure Javascript carousel with all the basic features in 1024 bytes (minified and gzipped).

  • 2.1.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-85.71%
Maintainers
1
Weekly downloads
 
Created
Source

Build Status Coverage Status Code Climate

Pure Javascript carousel with all the basic features in 1024 bytes (minified and gzipped).

— Inspired by the blazing fast, lightweight, cross-platform and crazy popular Vanilla JS framework.

Demo


Carousel

Installation


  1. Via NPM:

    npm install --save vanilla-js-carousel
    

    or in case you love shortcuts:

    npm i --S vanilla-js-carousel
    
  2. Old school:

    <script src="dist/vanilla-js-carousel.min.js"></script>
    

Usage


  1. Include the CSS and feel free to edit it or write your own:

    <link rel="stylesheet" href="dist/vanilla-js-carousel.css" />
    
  2. Write some markup:

    <div class="js-carousel" id="carousel">
        <ul>
            <li><img src="image-1.jpg" alt=""></li>
            <li><img src="image-2.jpg" alt=""></li>
            <li><img src="image-3.jpg" alt=""></li>
        </ul>
    </div>
    
  3. If you installed via NPM:

    const Carousel = require("vanilla-js-carousel");
    
  4. Initialize the carousel:

    var carousel = new Carousel({
        elem: 'carousel',    // id of the carousel container
        autoplay: false,     // starts the rotation automatically
        interval: 1500,      // interval between slide changes
        initial: 0,          // slide to start with
        dots: true,          // show navigation dots
        arrows: true,        // show navigation arrows
        buttons: false,      // hide play/stop buttons,
        btnStopText: 'Pause' // STOP button text
    });
    
    // Show slide number 3 (Numeration of slides starts at 0)
    carousel.show(2);
    
    // Move to the next slide
    carousel.next();
    

Options


Settings
OptionTypeDefaultDescription
elemstringcarouselThe id of the carousel container in the HTML markup
intervalint3000Auto play interval in milliseconds
initialint0Index of the slide to start on
autoplaybooleanfalseEnables auto play of slides
dotsbooleantrueDisplay navigation dots
arrowsbooleantrueDisplay navigation arrows (<prev>/<next>)
buttonsbooleantrueDisplay navigation buttons (<stop>/<play>)
CSS classes
OptionTypeDefaultDescription
crslClassstring.js-carouselCSS class of the carousel container
crslArrowPrevClassstring.arrow_prevCSS class of the <prev> arrow
crslArrowNextClassstring.arrow_nextCSS class of the <next> arrow
crslDotsClassstring.dotsCSS class of the nav dots container
crslButtonPlayClassstring.btn_playCSS class of the <play> button
crslButtonStopClassstring.btn_stopCSS class of the <stop> button
Button titles
OptionTypeDefaultDescription
btnPlayTextstringPlayText for <play> button
btnStopTextstringStopText for <stop> button
arrPrevTextstring&lsaquo;Text for <prev> arrow
arrNextTextstring&rsaquo;Text for <next> arrow

Methods


MethodArgumentDescription
.show(index)index: intMoves the carousel to slide by index
.live()Returns the current slide's index
.prev()Triggers previous slide
.next()Triggers next slide
.play()Starts the autoplay
.stop()Stops the autoplay

Run the tests


npm test

Browser support and dependencies


BrowserSupportDependencies
Chromeyes-
Firefoxyes-
Safariyes-
Operayes-
IEyes*Polyfill for .classList in IE9

* IE9 and up

License


Free. Unlicense.

Keywords

FAQs

Package last updated on 05 Mar 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc