npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

infinite-carousel-wc

v0.5.4

Published

A small, infinite carousel Web Component built with modern CSS and just a little Javascript

Downloads

58

Readme

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

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