• Stars
    star
    1,203
  • Rank 37,645 (Top 0.8 %)
  • Language
    TypeScript
  • License
    MIT License
  • Created over 5 years ago
  • Updated 3 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A lightweight production-ready Carousel that rocks supports multiple items and server-side rendering with no dependency. Bundle size 2kb.

react-multi-carousel ๐Ÿ‘‹

Financial Contributors on Open Collective All Contributors

Production-ready, lightweight fully customizable React carousel component that rocks supports multiple items and SSR(Server-side rendering).

Package Quality npm version download per month Build Status Documentation Maintenance License: MIT FOSSA Status David Dependancy Status Known Vulnerabilities

demo

demo

Hello world!

We are on a very excited journey towards version 3.0 of this component which will be rewritten in hooks/context completely. It means smaller bundle size, performance improvement and easier customization of the component and so many more benefits.

It would mean so much if you could provide help towards the further development of this project as we do this open source work in our own free time especially during this covid-19 crisis.

If you are using this component seriously, please donate or talk to your manager as this project increases your income too. It will help us make releases, fix bugs, fulfill new feature requests faster and better.

Become a backer/sponsor to get your logo/image on our README on Github with a link to your site.

Features.

  • Server-side rendering
  • Infinite mode
  • Dot mode
  • Custom animation
  • AutoPlay mode
  • Auto play interval
  • Supports images, videos, everything.
  • Responsive
  • Swipe to slide
  • Mouse drag to slide
  • Keyboard control to slide
  • Multiple items
  • Show / hide arrows
  • Custom arrows / control buttons
  • Custom dots
  • Custom styling
  • Accessibility support
  • Center mode.
  • Show next/previous set of items partially
  • RTL support

Shoutouts ๐Ÿ™

BrowserStack Logo

Big thanks to BrowserStack for letting the maintainers use their service to debug browser issues.

Documentation

Other important links.

Bundle size

Bundle-size. 2.5kB

Demo.

Documentation is here.

Demo for the SSR https://react-multi-carousel.now.sh/

Try to disable JavaScript to test if it renders on the server-side.

Codes for SSR at github.

Codes for the documentation at github.

Install

$ npm install react-multi-carousel --save

import Carousel from 'react-multi-carousel';
import 'react-multi-carousel/lib/styles.css';

How the SSR mode works?

Codes for SSR at github.

  • Demo for the SSR are at here
  • Try to disable JavaScript to test if it renders on the server-side.

Here is a lighter version of the library for detecting the user's device type alternative

You can choose to only bundle it on the server-side.

Minimum working set up.

import Carousel from "react-multi-carousel";
import "react-multi-carousel/lib/styles.css";
const responsive = {
  superLargeDesktop: {
    // the naming can be any, depends on you.
    breakpoint: { max: 4000, min: 3000 },
    items: 5
  },
  desktop: {
    breakpoint: { max: 3000, min: 1024 },
    items: 3
  },
  tablet: {
    breakpoint: { max: 1024, min: 464 },
    items: 2
  },
  mobile: {
    breakpoint: { max: 464, min: 0 },
    items: 1
  }
};
<Carousel responsive={responsive}>
  <div>Item 1</div>
  <div>Item 2</div>
  <div>Item 3</div>
  <div>Item 4</div>
</Carousel>;

Common Usage

import Carousel from "react-multi-carousel";
import "react-multi-carousel/lib/styles.css";

const responsive = {
  desktop: {
    breakpoint: { max: 3000, min: 1024 },
    items: 3,
    slidesToSlide: 3 // optional, default to 1.
  },
  tablet: {
    breakpoint: { max: 1024, min: 464 },
    items: 2,
    slidesToSlide: 2 // optional, default to 1.
  },
  mobile: {
    breakpoint: { max: 464, min: 0 },
    items: 1,
    slidesToSlide: 1 // optional, default to 1.
  }
};
<Carousel
  swipeable={false}
  draggable={false}
  showDots={true}
  responsive={responsive}
  ssr={true} // means to render carousel on server-side.
  infinite={true}
  autoPlay={this.props.deviceType !== "mobile" ? true : false}
  autoPlaySpeed={1000}
  keyBoardControl={true}
  customTransition="all .5"
  transitionDuration={500}
  containerClass="carousel-container"
  removeArrowOnDeviceType={["tablet", "mobile"]}
  deviceType={this.props.deviceType}
  dotListClass="custom-dot-list-style"
  itemClass="carousel-item-padding-40-px"
>
  <div>Item 1</div>
  <div>Item 2</div>
  <div>Item 3</div>
  <div>Item 4</div>
</Carousel>;

Custom Arrows.

You can pass your own custom arrows to make it the way you want, the same for the position. For example, add media query for the arrows to go under when on smaller screens.

Your custom arrows will receive a list of props/state that's passed back by the carousel such as the currentSide, is dragging or swiping in progress.

Code

const CustomRightArrow = ({ onClick, ...rest }) => {
  const {
    onMove,
    carouselState: { currentSlide, deviceType }
  } = rest;
  // onMove means if dragging or swiping in progress.
  return <button onClick={() => onClick()} />;
};
<Carousel customRightArrow={<CustomRightArrow />} />;

Custom button group.

This is very useful if you don't want the dots, or arrows and you want to fully customize the control functionality and styling yourself.

Code

const ButtonGroup = ({ next, previous, goToSlide, ...rest }) => {
  const { carouselState: { currentSlide } } = rest;
  return (
    <div className="carousel-button-group"> // remember to give it position:absolute
      <ButtonOne className={currentSlide === 0 ? 'disable' : ''} onClick={() => previous()} />
      <ButtonTwo onClick={() => next()} />
      <ButtonThree onClick={() => goToSlide(currentSlide + 1)}> Go to any slide </ButtonThree>
    </div>
  );
};
<Carousel arrows={false} customButtonGroup={<ButtonGroup />}>
  <ItemOne>
  <ItemTwo>
</Carousel>

renderButtonGroupOutside

Passing this props would render the button group outside of the Carousel container. This is done using React.fragment

<div className='my-own-custom-container'>
  <Carousel arrows={false} renderButtonGroupOutside={true} customButtonGroup={<ButtonGroup />}>
    <ItemOne>
    <ItemTwo>
  </Carousel>
</div>

Custom dots.

You can pass your own custom dots to replace the default one.

Custom dots can also be a copy or an image of your carousel item. See example in this one

The codes for this example

You custom dots will receive a list of props/state that's passed back by the carousel such as the currentSide, is dragging or swiping in progress.

Code

const CustomDot = ({ onClick, ...rest }) => {
  const {
    onMove,
    index,
    active,
    carouselState: { currentSlide, deviceType }
  } = rest;
  const carouselItems = [CarouselItem1, CaourselItem2, CarouselItem3];
  // onMove means if dragging or swiping in progress.
  // active is provided by this lib for checking if the item is active or not.
  return (
    <button
      className={active ? "active" : "inactive"}
      onClick={() => onClick()}
    >
      {React.Children.toArray(carouselItems)[index]}
    </button>
  );
};
<Carousel showDots customDot={<CustomDot />}>
  {carouselItems}
</Carousel>;

renderDotsOutside

Passing this props would render the dots outside of the Carousel container. This is done using React.fragment

<div className='my-own-custom-container'>
  <Carousel arrows={false} showDots={true} renderDotsOutside={renderButtonGroupOutside}>
    <ItemOne>
    <ItemTwo>
  </Carousel>
</div>

partialVisible props.

Shows the next items partially, this is very useful if you want to indicate to the users that this carousel component is swipable, has more items behind it.

This is different from the "centerMode" prop, as it only shows the next items. For the centerMode, it shows both.

const responsive = {
  desktop: {
    breakpoint: { max: 3000, min: 1024 },
    items: 3,
    partialVisibilityGutter: 40 // this is needed to tell the amount of px that should be visible.
  },
  tablet: {
    breakpoint: { max: 1024, min: 464 },
    items: 2,
    partialVisibilityGutter: 30 // this is needed to tell the amount of px that should be visible.
  },
  mobile: {
    breakpoint: { max: 464, min: 0 },
    items: 1,
    partialVisibilityGutter: 30 // this is needed to tell the amount of px that should be visible.
  }
}
<Carousel partialVisible={true} responsive={responsive}>
  <ItemOne />
  <ItemTwo />
</Carousel>

centerMode

Shows the next items and previous items partially.

<Carousel centerMode={true} />

afterChange callback.

This is a callback function that is invoked each time when there has been a sliding.

<Carousel
  afterChange={(previousSlide, { currentSlide, onMove }) => {
    doSpeicalThing();
  }}
/>

beforeChange call back

This is a callback function that is invoked each time before a sliding.

<Carousel
  beforeChange={(nextSlide, { currentSlide, onMove }) => {
    doSpeicalThing();
  }}
/>

Combine beforeChange and nextChange, real usage.

They are very useful in the following cases:

  • The carousel item is clickable, but you don't want it to be clickable while the user is dragging it or swiping it.
<Carousel
  beforeChange={() => this.setState({ isMoving: true })}
  afterChange={() => this.setState({ isMoving: false })}
>
  <a
    onClick={e => {
      if (this.state.isMoving) {
        e.preventDefault();
      }
    }}
    href="https://w3js.com"
  >
    Click me
  </a>
</Carousel>
  • Preparing for the next slide.
<Carousel beforeChange={nextSlide => this.setState({ nextSlide: nextSlide })}>
  <div>Initial slide</div>
  <div
    onClick={() => {
      if (this.state.nextSlide === 1) {
        doVerySpecialThing();
      }
    }}
  >
    Second slide
  </div>
</Carousel>

Skipping callbacks

When calling the goToSlide function on a Carousel the callbacks will be run by default. You can skip all or individul callbacks by passing a second parameter to goToSlide.

this.Carousel.goToSlide(1, true); // Skips both beforeChange and afterChange
this.Carousel.goToSlide(1, { skipBeforeChange: true }); // Skips only beforeChange
this.Carousel.goToSlide(1, { skipAfterChange: true }); // Skips only afterChange

focusOnSelect

Go to slide on click and make the slide a current slide.

<Carousel focusOnSelect={true} />

Using ref.

<Carousel ref={(el) => (this.Carousel = el)} arrows={false} responsive={responsive}>
  <ItemOne />
  <ItemTwo />
</Carousel>
<button onClick={() => {
    const nextSlide = this.Carousel.state.currentSlide + 1;
     // this.Carousel.next()
     // this.Carousel.goToSlide(nextSlide)
  }}>Click me</button>

additionalTransfrom Props.

This is very useful when you are fully customizing the control functionality by yourself like this one

Code

For example if you give to your carousel item padding left and padding right 20px. And you have 5 items in total, you might want to do the following:

<Carousel ref={el => (this.Carousel = el)} additionalTransfrom={-20 * 5} /> // it needs to be a negative number

Specific Props

Name Type Default Description
responsive object {} Numbers of slides to show at each breakpoint
deviceType string '' Only pass this when use for server-side rendering, what to pass can be found in the example folder
ssr boolean false Use in conjunction with responsive and deviceType prop
slidesToSlide Number 1 How many slides to slide.
draggable boolean true Optionally disable/enable dragging on desktop
swipeable boolean true Optionally disable/enable swiping on mobile
arrows boolean true Hide/Show the default arrows
renderArrowsWhenDisabled boolean false Allow for the arrows to have a disabled attribute instead of not showing them
removeArrowOnDeviceType string or array '' Hide the default arrows at different break point, should be used with responsive props. Value could be mobile or ['mobile', 'tablet'], can be a string or array
customLeftArrow jsx null Replace the default arrow with your own
customRightArrow jsx null Replace the default arrow with your own
customDot jsx null Replace the default dots with your own
customButtonGroup jsx null Fully customize your own control functionality if you don't want arrows or dots
infinite boolean false Enables infinite scrolling in both directions. Carousel items are cloned in the DOM to achieve this.
minimumTouchDrag number 50 The amount of distance to drag / swipe in order to move to the next slide.
afterChange function null A callback after sliding everytime.
beforeChange function null A callback before sliding everytime.
sliderClass string 'react-multi-carousel-track' CSS class for inner slider div, use this to style your own track list.
itemClass string '' CSS class for carousel item, use this to style your own Carousel item. For example add padding-left and padding-right
containerClass string 'react-multi-carousel-list' Use this to style the whole container. For example add padding to allow the "dots" or "arrows" to go to other places without being overflown.
dotListClass string 'react-multi-carousel-dot-list' Use this to style the dot list.
keyBoardControl boolean true Use keyboard to navigate to next/previous slide
autoPlay boolean false Auto play
autoPlaySpeed number 3000 The unit is ms
showDots boolean false Hide the default dot list
renderDotsOutside boolean false Show dots outside of the container
partialVisible boolean string false
customTransition string transform 300ms ease-in-out Configure your own anaimation when sliding
transitionDuration `number 300 The unit is ms, if you are using customTransition, make sure to put the duration here as this is needed for the resizing to work.
focusOnSelect boolean false Go to slide on click and make the slide a current slide.
centerMode boolean false Shows the next items and previous items partially.
additionalTransfrom number 0 additional transfrom to the current one.
shouldResetAutoplay boolean true resets autoplay when clicking next, previous button and the dots
rewind boolean false if infinite is not enabled and autoPlay explicitly is, this option rewinds the carousel when the end is reached (Lightweight infinite mode alternative without cloning).
rewindWithAnimation boolean false when rewinding the carousel back to the beginning, this decides if the rewind process should be instant or with transition.
rtl boolean false Sets the carousel direction to be right to left

Author

๐Ÿ‘ค Yi Zhuang

๐Ÿค Contribute

Please read https://github.com/YIZHUANG/react-multi-carousel/blob/master/contributing.md

Submit an issue for feature request or submit a pr.

Local development.

  • cd app
  • npm install
  • npm run dev

Donation

If this project help you reduce time to develop, you can give me a cup of coffee :)

paypal

Contributors

Code Contributors

This project exists thanks to all the people who contribute. [Contribute].

Financial Contributors

Become a financial contributor and help us sustain our community. [Contribute]

Individuals

Organizations

Support this project with your organization. Your logo will show up here with a link to your website. [Contribute]

License

FOSSA Status

Contributors โœจ

Thanks goes to these wonderful people (emoji key):


Truong Hoang Dung

๐Ÿ’ป

Tobias Pinnekamp

๐Ÿ’ป

Rajendran Nadar

๐Ÿ’ป

Abhinav Dalal

๐Ÿ’ป

Oscar Barrett

๐Ÿ’ป

Neamat Mim

๐Ÿ’ป

Martin Retrou

๐Ÿ’ป

Ben Hodgson

๐Ÿ’ป

Faizan ul haq

๐Ÿ’ป

Adrian3PG

๐Ÿ’ป

kuznetsovgm

๐Ÿ’ป

Vadim Filimonov

๐Ÿ“–

Romain

๐Ÿ’ป

Riley Lundquist

๐Ÿ’ป

Paul Deshaies Jr

๐Ÿ’ป

Pavel Mikheev

๐Ÿ’ป

nev1d

๐Ÿ’ป

Mads Vammen

๐Ÿ’ป

Jiro Farah

๐Ÿ’ป

This project follows the all-contributors specification. Contributions of any kind welcome!

More Repositories

1

react-csp

A npm package/plugin that generates Content Security Policy for create-react-app without eject or rewired.
TypeScript
17
star
2

Chatbot

For Digia hackathon 2018. Chatbot with speech recognition for solving health related issues with react integration.
JavaScript
5
star
3

house-finder

A scraper gets run every 5 hours to find apartments automatically instead of looking up manually everyday
JavaScript
5
star
4

Foodie_React-Native

a react-native app built while i first started coding as a beginner.
JavaScript
3
star
5

InstrumHack

For tieto hackathon 2018 to improve Finnish people financial well-being
CSS
3
star
6

Todoer

A hight quality todo app soon to be available on Android and Ios.
TypeScript
3
star
7

slush_2018_match_making_front-end

A react app for Slush Hackathon 2018.
JavaScript
2
star
8

ideaManagement_frontend

react app for managing ideas with KnexJs, Express And postgresql
JavaScript
2
star
9

ideaManagement_backend_knex_nodejs

react app for managing ideas with KnexJs, Express And postgresql
JavaScript
2
star
10

webpack-merge-config

Merges webpack config in a smarter way as an alternative to webpack-merge that promotes code reuse.
JavaScript
2
star
11

Junction_StupidHack_2018

A react native application using Dialogflow for Junction's stupid hack 2018 made in 4 hours
1
star
12

react-simple-collapsible-element

A react collapsible library/accordion supports nested elements with custom styling and common use cases
JavaScript
1
star
13

FoodProduct_spring

full-stack spring boot app with react integration.
JavaScript
1
star
14

Decider

Dart
1
star
15

store-ssr-nextjs

Create any stores to be used on both server and client side.
JavaScript
1
star
16

git-repo-npm-bootster

A cli tool that make your repo or npm package look nice.
JavaScript
1
star
17

Forum_Back_End

Back-end for someone my projects. Back-end: Nodejs, express. Database: MongoDb,
JavaScript
1
star
18

SpringBoot_Check-age

spring boot practice
Shell
1
star
19

Manager_ReactNative

react native app with redux for managing employees. Back-end: Firebase
JavaScript
1
star
20

Blogger_React

react app with Redux for blogging. Back-end: Express, Mongodb
JavaScript
1
star
21

serverless-cloud-function-and-storage

Creating sitemap.xml and upload to Google Cloud storage using Serverless Google cloud function.
TypeScript
1
star
22

YIZHUANG.github.io

Portfolio
CSS
1
star
23

Hackerhunt_react

a react application.
JavaScript
1
star
24

web-crawlers

puppeteer+Node+React web scrapping for developer job hunting.
JavaScript
1
star
25

chat

A full stack chat app made under 4 hours as an exercise
TypeScript
1
star
26

SpringBoot_Student

Spring boot practice
Shell
1
star
27

PayPerMail_frontend

react redux app
JavaScript
1
star
28

portfolio_experiment

experiment with react particle.
JavaScript
1
star
29

coffee_bag_packing

my attempt on solving the bin packing problem with first fit decreasing algorithm
JavaScript
1
star
30

date

JavaScript
1
star
31

StupidHack

For junction 's stupid hackathon 2018 to make the most stupid app possible but useful. Made under 4 hours
Java
1
star
32

simple-carousel

Supports multiple items and SSR with the minimal amount of codes to better show case what's under the hood.
JavaScript
1
star
33

ClubManagement

Creating a sql database for a club with the functions of booking/cancelling/refunding tickets etc, by using stored procedure/User defined functions/triggers etc
1
star
34

redux_immutable_example

A shopping cart example using redux-immutable with immutablejs.
JavaScript
1
star
35

nested-tree-hack

simple tree view checkbox inspired by react-checkbox-tree.
JavaScript
1
star
36

bookStore

SpringBoot Back-end With rest API With add function With delete function With edit function http://localhost:8080/BookList http://localhost:8080/api/books http://localhost:8080/books http://localhost:8080/books/1 http://localhost:8080/books/2
Java
1
star
37

PayPerMail_backend

React app with Payment , send email promotional emails with template to choose from, passportJs, google login, password log in functions.
JavaScript
1
star