🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

ds-carousel

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ds-carousel

Simple but slick carousel that works with mouse, touch and trackpad events.

0.2.3
latest
npm
Version published
Weekly downloads
5
66.67%
Maintainers
1
Weekly downloads
 
Created
Source

Simple but slick carousel that works with mouse, touch and trackpad events.

Usage

Here is a basic example of how to create a new DS-Carousel by giving it a container with your slides from HTML.

index.html

<div id='#myslides'>
  <div class='slide'>
    <h1>Slide #1 Title</h1>
    <p>Slide #1 Content here. Lorem Ipsum</p>
  </div>
  <div class='slide'>
    <h1>Slide #2 Title</h1>
    <p>Slide #2 Content here. Lorem Ipsum</p>
  </div>
</div>

index.js

import Carousel from 'ds-carousel';

const slides = document.querySelector('#slides');
const carousel = new Carousel(slides);

In this example, we'll create an empty DS-Carousel and then fill it using a for loop. This method might be better suited for procedurally generated carousels:

index.js

import Carousel from 'ds-carousel';

const carousel = new Carousel();
for (let i = 0; i < 3; i += 1) {
  const slide = document.createElement('div');
  slide.innerHTML = `<h1>Slide ${i}</h1>`;
  carousel.addSlide(slide);
}

document.body.appendChild(carousel.el);

Note: since this carousel was generated from code it still needs to be added to the DOM after initialization.

API

FAQs

Package last updated on 30 Jan 2022

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