Giter Club home page Giter Club logo

infinite-carousel-wc's Introduction

Build Published on webcomponents.org npm

infinite-carousel-wc

An infinite carousel Web Component built with modern CSS and just a little Javascript. Supports both horizontal and vertical scrolling.

infinite-carousel-wc demo

Installation

You can integrate infinite-carousel-wc via <script> tag or via NPM.

Via <script> tag

In the <head> of your index.html put a script tag like this:

<script
  type="module"
  src="https://unpkg.com/infinite-carousel-wc/infinite-carousel-wc.js"
></script>

<!-- Or use the minified version -->
<script
  type="module"
  src="https://unpkg.com/infinite-carousel-wc/infinite-carousel-wc.min.js"
></script>

Now you can use the infinite-carousel-wc element anywhere in your html, JSX, template, etc.

Via NPM

npm install infinite-carousel-wc --save

And then you need to import the module before you can use it in your html/jsx/template:

import "infinite-carousel-wc";

Web Component Browser Support

This web component uses HTML templates, the shadow DOM, and custom elements. If you need to polyfill for any of these standards then take a look at the web components polyfill.

Polyfills

This custom element uses CSS Scroll Snap, IntersectionObserver and Smooth Scrolling. Browser support for Scroll Snap is pretty good (this custom element supports both v0 and v1 of the spec). There is a polyfill for IntersectionObserver and Smooth Scrolling.

A note about IntersectionObserver polyfill on iOS 12.1 and below: you might need to configure the polyfill to use polling for the carousel to work properly.

API and Customization

Slots

The infinite carousel works by laying out 3 slots, with slot names of 1, 2, and 3. The slots will be re-ordered in a circular manner as the user swipes/scrolls.

When inifinite-scroller-wc first renders it will show slot 1 as visible (called the "current" position). Slot 2 will be to the right (in the "next" position), and slot 3 will be to the left (in the "previous" position), like this:

"previous" "current" "next"
3 1 2

Remember that "current" is the only slot visible to the user at rest. When the user peaks left or right they will then see the "previous" or "next" slot contents respectively.

When the user swipes/scrolls forward then some CSS will get added to the slots to re-order them (technically the CSS is added to the slot's parents which are encapsulated in the shadow DOM). After 1 swipe/scroll it will look like this:

"previous" "current" "next"
1 2 3

Another swipe forward/next would produce:

"previous" "current" "next"
2 3 1

Swiping/scrolling backward would do the reverse, as you'd expect.

The circular re-ordering allows the user to swipe/scroll "infinitely" in either direction. It is up to the consuming code to listen for the next or previous events. For an example of listening to the event and updating the slot contents take a look at index.html.

Methods

  • goNext()
    • Scrolls to the next slot.
    • Example: document.getElementById("carousel").goNext()
  • goPrevious()
    • Scrolls to the previous slot.
    • Example: document.getElementById("carousel").goPrevious()
  • reset()
    • Resets the slot order to the initial order. Slot 1 will be in the "current" position, slot 2 will be in the "next" position, and slot 3 will be in the "previous" position.
    • Example: document.getElementById("carousel").reset()

Attributes/Properties

  • vertical
    • Add this attribute to make your carousel scroll vertically instead of horizontally.
      • Example: <infinite-carousel-wc vertical></infinite-carousel-wc>
    • Set the property in Javascript to imperatively set vertical scrolling
      • Example: carousel.vertical = true
    • NOTE: Dynamically changing this attribute/property will cause a reset of the slot order (it calls the reset() method).
  • lock
    • Add this attribute to prevent scrolling.
      • Example: <infinite-carousel-wc lock></infinite-carousel-wc>
    • Set the property in Javascript to imperatively disable scrolling
      • Example: carousel.lock = true
  • currentSlot
    • This property will return the current slot being shown.
    • You cannot set this property programmatically nor can you set it as an attribute.

Events

  • next
    • Raised after the user has scrolled to the next slot
    • Raised about 200ms before the user is allowed to scroll again
    • event.detail contains an ChangeEventDetail object of the following shape:
      export interface ChangeEventDetail {
        newCurrent: 1 | 2 | 3;
      }
    • ChangeEventDetail is an exported type that you can consume if you are writing your code in Typescript.
    • Example: carousel.addEventListener("next", handleCarouselNext())
  • previous
    • Raised after the user has scrolled to the previous slot
    • Raised about 200ms before the user is allowed to scroll again
    • event.detail contains an ChangeEventDetail object of the following shape:
      export interface ChangeEventDetail {
        newCurrent: 1 | 2 | 3;
      }
    • ChangeEventDetail is an exported type that you can consume if you are writing your code in Typescript.
    • Example: carousel.addEventListener("previous", handleCarouselPrevious())

Styling

You can style the infinite-carousel-wc element as you would any regular element, in CSS. You can see an example in index.html.

Contribute

This project is built with standard HTML/CSS/JS, no frameworks or special web-component compilers here (for maximum simplicity and minimum size). If you want to learn more about writing custom elements see MDN or this web fundamentals page.

The source for this web component is contained in infinite-carousel-wc.js and example usage is in index.html. To debug/run the example you can just open index.html in a browser. For a hot-reload developer experience try using live server in vscode.

You will need the dev dependencies of this project installed to run the post-commit hooks.

npm install

infinite-carousel-wc's People

Contributors

dependabot[bot] avatar

Watchers

 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.