0.1.8 • Published 3 years ago

easy-react-carousel v0.1.8

Weekly downloads
44
License
MIT
Repository
github
Last release
3 years ago

easy-react-carousel

Why?

Bored of installing heavy components full of stuff that you don't need that sometimes are not even made in react ? If you are looking for a light carousel component, fully made in react this is the right solution for you

Installation

Basic

npm i easy-react-carousel

Usage

By default, the component does not need anything except for an array of object (slides) passed by the prop slides.

import React from 'react';
import Carousel from 'easy-react-carousel'

const slides = [
    {
      title: // title ,
      description: // description,
      id: // every slide must have a unique id,
      image: // the image url,
      url: // this is used to redirect to the url page when you click on the slide
    },
    // ...
]

const Carousel = () => (
  <Carousel
    slides={slides}
  />
);

export default Carousel;

Props

Carousel props

PropTypeDefaultDescription
slidesArrayundefinedYou must pass an array of object with the property you see above
onChangeFunctionundefinedHandler triggered when current slide change
onClickArrayundefinedTriggered when you click on a slide
showSelectMenuBooleantrueShows or not the corousel "buttons" that allows you to switch between slides
showArrowsBooleanfalseShows or not side arrows to navigate in the carousel
disableRedirectBooleantrueBy default if the url property it's present, when you click on a slide you are redirected to that url, you can disable that option setting this to false
speedNumber5000This is the speed of the transition between one slide and another
rtlBooleantrueDetermines in which direction the slider "slide", if it's true it go from right to left (that's why rtl) otherwise from left to right
borderRadiusNumber4pxThis is the border-radius of the carousel
heightNumber180pxThe height of the carousel
alignmentStringleftYou can change the alignment of the text and description to left, center, right

Support 💻

Any Issue, contribution or idea are welcome 😃

0.1.8

3 years ago

0.1.7

3 years ago

0.1.6

3 years ago

0.1.5

3 years ago

0.1.4

3 years ago

0.1.2

3 years ago

0.1.3

3 years ago

0.1.1

3 years ago

0.1.0

3 years ago