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 🙏

© 2026 – Pkg Stats / Ryan Hefner

swipix

v1.0.2

Published

Swipix is a customizable, feature-rich JavaScript carousel library that enables developers to create responsive, touch-enabled slider components with various configuration options. The library supports standard carousel functionality along with advanced f

Readme

Swipix

A lightweight, feature-rich carousel/slider library for modern web applications.

Overview

Swipix is a customizable carousel library that offers a wide range of features including infinite looping, responsive layouts, touch gestures, built-in tab support, autoplay, lazy loading, and more. It's designed to be flexible and easy to implement in any web project.

Table of Contents

Installation

Direct script include

<script src="https://unpkg.com/swipix/dist/swipix.umd.js"></script>

Basic Usage

  1. Create the HTML structure for your carousel:
<div class="pix-container">
  <div class="pix-wrapper">
    <div class="pix-slide">Slide 1</div>
    <div class="pix-slide">Slide 2</div>
    <div class="pix-slide">Slide 3</div>
    <!-- More slides -->
  </div>
</div>

<!-- Optional Navigation Buttons -->
<button class="prev-btn">Previous</button>
<button class="next-btn">Next</button>
  1. Initialize the carousel with JavaScript:
const carousel = new Swipix({
  container: '.pix-container',
  nextButton: '.next-btn',
  prevButton: '.prev-btn'
}).init();

Configuration Options

| Option | Type | Default | Description | |--------|------|---------|-------------| | container | String | .pix-container | Selector for the carousel container | | nextButton | String/null | null | Selector for the next button | | prevButton | String/null | null | Selector for the previous button | | loop | Boolean | false | Enable standard looping (return to first/last slide) | | infiniteLoop | Boolean | false | Enable true infinite sliding with cloned slides | | speed | Number | 300 | Transition speed in milliseconds | | slidesPerView | Object | { default: 1 } | Number of slides to show based on viewport width | | gap | Number | 0 | Gap between slides in pixels | | slidesToMove | Number | 1 | Number of slides to move per navigation action | | tabsConfig | Object/Array | undefined | Configuration for built-in tabs | | autoplay | Object | { enabled: false, delay: 3000, pauseOnInteraction: false, pauseAfterInteraction: false } | Autoplay configuration | | lazyMedia | Boolean | false | When true, media inside slides (img/video with data-src) will be lazy loaded when visible | | lazyMediaOffset | Number | 100 | Offset in pixels for triggering lazy media load | | lazyPix | Boolean | false | When true, initializes the carousel only when it's near the viewport | | lazyPixOffset | Number | 150 | Offset in pixels for lazy initialization |

Responsive Configuration

The slidesPerView option accepts an object with breakpoints:

slidesPerView: {
  default: 1, // Default value for mobile
  768: 2,     // 2 slides when viewport width >= 768px
  1024: 3     // 3 slides when viewport width >= 1024px
}

Features

Responsive Design

Swipix automatically adapts to different screen sizes with the configurable slidesPerView option. This allows you to display different numbers of slides based on the viewport width.

const carousel = new Swipix({
  container: '.pix-container',
  slidesPerView: {
    default: 1, // Mobile view
    768: 2,     // Tablet view
    1024: 3     // Desktop view
  }
}).init();

Infinite Loop

Swipix offers two loop options:

  1. Standard Loop (loop: true): When you reach the end, clicking "next" will take you back to the first slide.

  2. Infinite Loop (infiniteLoop: true): Creates a true infinite loop by cloning slides, providing a seamless and continuous experience.

// True infinite carousel with cloned slides
const infiniteCarousel = new Swipix({
  container: '.pix-container',
  infiniteLoop: true
}).init();

Touch & Mouse Interaction

Swipix includes built-in support for touch swipe and mouse drag interactions. Users can navigate slides with touch or mouse gestures without any additional configuration.

Built-in Tabs

Swipix supports integrated tabs for navigating between slides. This is particularly useful for creating tab-controlled content carousels.

const carouselWithTabs = new Swipix({
  container: '.pix-container',
  tabsConfig: {
    container: '.tabs-container',
    buttonSelector: '.tab-btn',
    activeClass: 'active'
  }
}).init();

Advanced Tab Configuration

You can map specific tabs to specific slides:

tabsConfig: {
  container: '.tabs-container',
  buttonSelector: '.tab-btn',
  mapping: [0, 3, 5], // First tab -> slide 0, second tab -> slide 3, etc.
  activeClass: 'active'
}

You can also use range mapping to activate tabs based on slide ranges:

tabsConfig: {
  container: '.tabs-container',
  buttonSelector: '.tab-btn',
  mapping: [0, 3], // If slide index < 3, activate first tab, otherwise second tab
  rangeMapping: true,
  activeClass: 'active'
}

Multiple tab groups can be configured by providing an array of tab configurations:

tabsConfig: [
  {
    container: '.tabs-container-1',
    buttonSelector: '.tab-btn-1'
  },
  {
    container: '.tabs-container-2',
    buttonSelector: '.tab-btn-2',
    mapping: [0, 3, 5]
  }
]

Autoplay

Swipix includes configurable autoplay functionality:

const autoplayCarousel = new Swipix({
  container: '.pix-container',
  autoplay: {
    enabled: true,
    delay: 3000,               // Time between slides in milliseconds
    pauseOnInteraction: true,  // Pause when user interacts with carousel
    pauseAfterInteraction: false // Don't resume after user interaction
  }
}).init();

Lazy Loading

Swipix supports lazy loading of media content within slides:

const lazyCarousel = new Swipix({
  container: '.pix-container',
  lazyMedia: true,
  lazyMediaOffset: 100 // Load media when slides are 100px from entering the viewport
}).init();

To use lazy loading, add a data-src attribute to your media elements instead of src:

<div class="pix-slide">
  <img data-src="image.jpg" alt="Lazy loaded image">
</div>

Lazy Initialization

For performance optimization, Swipix can initialize the carousel only when it's near the viewport:

const lazyInitCarousel = new Swipix({
  container: '.pix-container',
  lazyPix: true,
  lazyPixOffset: 150 // Initialize when carousel is 150px from entering the viewport
}).init();

API Methods

Swipix provides several methods to control the carousel programmatically:

init([selector])

Initializes the carousel. Optionally accepts a container selector.

const carousel = new Swipix(config).init();
// or
const carousel = new Swipix(config).init('#my-carousel');

next(container)

Navigate to the next slide.

carousel.next('.pix-container');

prev(container)

Navigate to the previous slide.

carousel.prev('.pix-container');

slideTo(container, index)

Navigate to a specific slide by index (zero-based).

carousel.slideTo('.pix-container', 2); // Go to the third slide

If you have only one carousel, you can simplify:

carousel.slideTo(2); // Go to the third slide of the first carousel

updateConfig(newConfig)

Update carousel configuration after initialization.

carousel.updateConfig({
  speed: 500,
  gap: 20,
  autoplay: { enabled: true, delay: 5000 }
});

destroy()

Completely removes the carousel functionality and reverts to the original HTML structure.

carousel.destroy();

Events

Swipix emits events that you can listen for:

swipix:slideChanged

Fired when the active slide changes.

document.addEventListener('swipix:slideChanged', (event) => {
  console.log('Slide changed:', event.detail.currentIndex);
});

The event detail contains:

  • carousel: The Swipix instance
  • container: The carousel container element
  • currentIndex: The current slide index

Examples

Basic Carousel

const basicCarousel = new Swipix({
  container: '#basic-carousel',
  nextButton: '.next-btn',
  prevButton: '.prev-btn'
}).init();

Infinite Loop with Multiple Visible Slides

const infiniteCarousel = new Swipix({
  container: '#infinite-carousel',
  nextButton: '.next-btn',
  prevButton: '.prev-btn',
  infiniteLoop: true,
  slidesPerView: { default: 1, 768: 2, 1024: 3 },
  gap: 10
}).init();

Carousel with Tabs

const tabCarousel = new Swipix({
  container: '#tab-carousel',
  tabsConfig: {
    container: '.tabs-container',
    buttonSelector: '.tab-btn',
    activeClass: 'active'
  }
}).init();

Autoplay Carousel with Lazy Loading

const autoplayLazyCarousel = new Swipix({
  container: '#autoplay-lazy-carousel',
  autoplay: { enabled: true, delay: 3000, pauseOnInteraction: true },
  lazyMedia: true
}).init();

Browser Support

Swipix works in all modern browsers that support:

  • ES6 features
  • CSS3 transitions
  • IntersectionObserver API (for lazy loading features)

License

MIT License