🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

react-deadly-simple-carousel

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-deadly-simple-carousel

Carousel Component to display images in sequence, supports touch events, click events, arrows navigation, dot navigation

0.1.20
latest
Source
npm
Version published
Maintainers
1
Created
Source

Carousel Component to display images in sequence, supports touch events, click events, arrows navigation, dot navigation

Fast usage

npm i react-deadly-simple-carousel

To use the carousel:

import React from "react";
import { Gallery } from "react-deadly-simple-carousel";

// IMPORTANT: import the gallery css
import "react-deadly-simple-carousel/dist/style.css";

export const YourComponent = () => {
  return (
    <Gallery
      images={[
        {
          src: "path/to/your.img",
          alt: "alt description",
        },
        {
          src: "path/to/your.img",
          alt: "alt description",
        },
      ]}
    />
  );
};

Here you can play with the gallery and generate yours. Link Generator

Work in progress

Complete documentation coming soon. 🥵

Contacts

For any request and urgent question contact me here: simone.piz1984@gmail.com

Keywords

react-carousel

FAQs

Package last updated on 11 Feb 2023

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