1.2.7 • Published 8 months ago

scroll-carousel v1.2.7

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

Scroll Carousel

Simple content slider, works on scroll. Absolutely free for use. Thriving for precision & community growth.

NPM | Documentation | Demos

Note: This carousel only operates in browser.

Contents

Features

  • Mobile friendly: It is meant to be utilized in mobile web apps and mobile websites.
  • Autoplay: Scroll carousel supports autoplay.
  • Library Agnostic: It is significantly smaller and faster because it doesn't need any JavaScript libraries like jQuery.
  • Responsive: It is responsive by default.
  • Typescript support: Scroll carousel is fully typed.

Install

Download

CDN

To get started with Scroll Carousel right away, there are a few CDN available to serve the file faster:

Example usign jsDelivr

Add a link to the css file in your <head>:

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/scroll-carousel@1.2.7/dist/scroll.carousel.min.css">

Then, before your closing <body> tag, add:

<script src="https://cdn.jsdelivr.net/npm/scroll-carousel@1.2.7/dist/scroll.carousel.min.js"></script>

Package managers

npm
npm install scroll-carousel

Using with npm needs import js and css. Let's see -

Import JS in your js file

import ScrollCarousel from 'scroll-carousel';

Import CSS in your css file

@import 'node_modules/scroll-carousel/dist/scroll.carousel.css';

Usage

Scroll Carousel basically works with a container element and a set of child item elements. Wrap your item elements (div, a, span, li etc) with a container element (div, ul etc).

<div class="my-carousel">
  <div class="my-slide">...</div>
  <div class="my-slide">...</div>
  <div class="my-slide">...</div>
  ...
</div>

NOTE: my-carousel class name is not mandatory. You can use any class or id name according to your choice and need.

Initialize with vanilla Javascript

Initialize the Scroll Carousel with new keyword.

new ScrollCarousel(".my-carousel", {
  ...options
})

or,

const myCarousel = document.querySelector(".my-carousel");

new ScrollCarousel(myCarousel, {
  ...options
})

Initialize with HTML

You can initialize Scroll Carousel in HTML, without writing any JavaScript. Add data-carousel attribute to the carousel element. Options can be set in its value.

<div class="my-carousel" data-carousel>
  <div class="my-slide">...</div>
  <div class="my-slide">...</div>
  <div class="my-slide">...</div>
  ...
</div>

Options

OptionTypeDefaultDescription
speednumber7The value given is how fast you want to move on the scroll. It needs to be greater than 0.
smartSpeedbooleanfalseTo calculate the speed of how fast or slow you are scrolling a website.
marginnumber10To make gap between two slide
slideSelectorstringnullSelect the slides with a class name you want to select for the carousel. Other elements will behave as simple.
autoplaybooleanfalseThe option will allow the slides move automatically and still you will have the ability to handle sliding speed on scroll.
autoplaySpeednumber5Control autoplay speed. It needs to be greater than 0
directionstring'rtl'Control direction left to right or right to left. Two possible option - ltr or rtl
Example with options
new ScrollCarousel(".my-carousel", {
  speed: 15,
  autoplay: true,
  autoplaySpeed: 5,
  smartSpeed: true,
  slideSelector: ".my-slide",
  direction: "rtl",
  margin: 10
})

or,

<div class="my-carousel" data-carousel='{"speed": 15, "autoplay": true, "smartSpeed": true, "slideSelector": ".my-slide"}'>
  <div class="my-slide">...</div>
  <div class="my-slide">...</div>
  <div class="my-slide">...</div>
  ...
</div>

:warning: Options set in HTML must be valid JSON. Keys need to be quoted, for example "speed":. Note that the attribute value uses single quotes ', but the JSON entities use double-quotes ".

Methods

MethodReturnDescription
destroy()voidRemove ScrollCarousel functionality completely. destroy will return the element back to its pre-initialized state.
reinit()ScrollCarousel{}This will initialize your carousel after destroy with previous options and returned the ScrollCarousel instance.
Example of methods
let scrollCarousel = new ScrollCarousel(".my-carousel", {
  speed: 15,
  autoplay: true,
  smartSpeed: true,
  slideSelector: ".my-slide"
})

document.querySelector('#button').addEventListener('click', function () {
  if(scrollCarousel.isActive) {
    scrollCarousel.destroy();
  } else {
    scrollCarousel = scrollCarousel.reinit()
  }
});

Events

EventDescription
readyThis event will fire when the plugin is ready to action
destroyThis event will fire when the destroy method is being hit
moveThis event will fire when the carousel is on move
Example of events
let scrollCarousel = new ScrollCarousel(".my-carousel", {
  speed: 15,
  autoplay: true,
  smartSpeed: true,
  slideSelector: ".my-slide",
  on: {
    ready: function () {
      console.log("Be ready");
    },
    destroy: function () {
      console.log("Destroyed");
    }
  }
})

scrollCarousel.on("move", function (progress) {
  consol.log(progress);
})

Browser support

Desktop: Firefox 8+ ✓ Chrome 15+ ✓ (Should works on Chrome 4-14 as well, but I couldn't test it.) Safari 4+ ✓ Opera 12.1+ ✓ IE 8+ ✓

Mobile: Android Browser 4.2+ ✓ Chrome Mobile 63+ ✓ Firefox Mobile 28+ ✓ Maxthon 4+ ✓

License

The code and the documentation are released under the MIT License.

Contributors

This project exists thanks to all the people who contribute. [Contribute].