Socket
Socket
Sign inDemoInstall

react-deadly-simple-carousel

Package Overview
Dependencies
263
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

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


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Created
Weekly downloads
 

Readme

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

FAQs

Last updated on 11 Feb 2023

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc