3.2.23 • Published 2 years ago

react-responsive-carousel v3.2.23

Weekly downloads
109,653
License
MIT
Repository
github
Last release
2 years ago

React Responsive Carousel

npm version Build Status FOSSA Status

Powerful, lightweight and fully customizable carousel component for React apps.

Important

I don't have any time available to keep maintaining this package. If you have any request, try to sort it within the community. I'm able to merge pull requests that look safe from time to time but no commitment on timelines here. Feel free to fork it and publish under other name if you are in a hurry or to use another component.

Features

  • Responsive
  • Mobile friendly
  • Swipe to slide
  • Mouse emulating touch
  • Server side rendering compatible
  • Keyboard navigation
  • Custom animation duration
  • Auto play w/ custom interval
  • Infinite loop
  • Horizontal or Vertical directions
  • Supports images, videos, text content or anything you want. Each direct child represents one slide!
  • Supports external controls
  • Highly customizable:
    • Custom thumbs
    • Custom arrows
    • Custom indicators
    • Custom status
    • Custom animation handlers

Important links:

Demo

http://leandrowd.github.io/react-responsive-carousel/

Check it out these cool demos created using storybook. The source code for each example is available here

Customize it yourself:

Installing as a package

yarn add react-responsive-carousel

Usage

import React, { Component } from 'react';
import ReactDOM from 'react-dom';
import "react-responsive-carousel/lib/styles/carousel.min.css"; // requires a loader
import { Carousel } from 'react-responsive-carousel';

class DemoCarousel extends Component {
    render() {
        return (
            <Carousel>
                <div>
                    <img src="assets/1.jpeg" />
                    <p className="legend">Legend 1</p>
                </div>
                <div>
                    <img src="assets/2.jpeg" />
                    <p className="legend">Legend 2</p>
                </div>
                <div>
                    <img src="assets/3.jpeg" />
                    <p className="legend">Legend 3</p>
                </div>
            </Carousel>
        );
    }
});

ReactDOM.render(<DemoCarousel />, document.querySelector('.demo-carousel'));

// Don't forget to include the css in your page

// Using webpack or parcel with a style loader
// import styles from 'react-responsive-carousel/lib/styles/carousel.min.css';

// Using html tag:
// <link rel="stylesheet" href="<NODE_MODULES_FOLDER>/react-responsive-carousel/lib/styles/carousel.min.css"/>

Props

NameValueDescription
ariaLabelstringDefine the aria-label attribute for the root carousel element. The default is undefined, skipping the attribute from markup.
axis'horizontal', 'vertical'Define the direction of the slider, defaults to 'horizontal'.
autoFocusbooleanForce focus on the carousel when it renders.
autoPlaybooleanChange the slide automatically based on interval prop.
centerModebooleanCenter the current item and set the slide width based on centerSlidePercentage.
centerSlidePercentagenumberDefine the width percentage relative to the carousel width when centerMode is true.
dynamicHeightbooleanThe height of the items will not be fixed.
emulateTouchbooleanEnable swipe on non-touch screens when swipeable is true.
infiniteLoopbooleanGoing after the last item will move back to the first slide.
intervalnumberInterval in milliseconds to automatically go to the next item when autoPlay is true, defaults to 3000.
labelsobjectApply aria-label on carousel with an object with the properties leftArrow, rightArrow and item. The default is {leftArrow: 'previous slide / item', rightArrow: 'next slide / item', item: 'slide item'}.
onClickItemfunctionCallback to handle a click event on a slide, receives the current index and item as arguments.
onClickThumbfunctionCallback to handle a click event on a thumb, receives the current index and item as arguments.
onChangefunctionCallback to handle every time the selected item changes, receives the current index and item as arguments.
onSwipeStartfunctionCallback to handle when the swipe starts, receives a touch event as argument.
onSwipeEndfunctionCallback to handle when the swipe ends, receives a touch event as argument.
onSwipeMovefunctionCallback triggered on every movement while swiping, receives a touch event as argument.
preventMovementUntilSwipeScrollTolerancebooleanDon't let the carousel scroll until the user swipe to the value specified on swipeScrollTolerance.
renderArrowPrevfunctionRender custom previous arrow. Receives a click handler, a boolean that shows if there's a previous item, and the accessibility label as arguments.
renderArrowNextfunctionRender custom previous arrow. Receives a click handler, a boolean that shows if there's a next item, and the accessibility label as arguments.
renderIndicatorfunctionRender custom indicator. Receives a click handler, a boolean that shows if the item is selected, the item index, and the accessibility label as arguments.
renderItemfunctionRender a custom item. Receives an item of the carousel, and an object with the isSelected property as arguments.
renderThumbsfunctionRender prop to show the thumbs, receives the carousel items as argument. Get the img tag of each item of the slider, and render it by default.
selectedItemnumberSet the selected item, defaults to 0.
showArrowsbooleanEnable previous and next arrow, defaults to true.
showStatusbooleanEnable status of the current item to the total, defaults to true.
showIndicatorsbooleanEnable indicators to select items, defaults to true.
showThumbsbooleanEnable thumbs, defaults to true.
statusFormatterfunctionFormatter that returns the status as a string, receives the current item and the total count as arguments. Defaults to {currentItem} of {total} format.
stopOnHoverbooleanThe slide will not change by autoPlay on hover, defaults to true.
swipeablebooleanEnable the user to swipe the carousel, defaults to true.
swipeScrollTolerancenumberHow many pixels it's needed to change the slide when swiping, defaults to 5.
thumbWidthnumberWidth of the thumb, defaults to 80.
transitionTimenumberDuration of the animation of changing slides.
useKeyboardArrowsbooleanEnable the arrows to move the slider when focused.
verticalSwipe'natural', 'standard'Set the mode of swipe when the axis is 'vertical'. The default is 'standard'.
widthnumber or stringThe width of the carousel, defaults to 100%.

Customizing

Items (Slides)

By default, each slide will be rendered as passed as children. If you need to customize them, use the prop renderItem.

renderItem: (item: React.ReactNode, options?: { isSelected: boolean }) => React.ReactNode;

Thumbs

By default, thumbs are generated extracting the images in each slide. If you don't have images on your slides or if you prefer a different thumbnail, use the method renderThumbs to return a new list of images to be used as thumbs.

renderThumbs: (children: React.ReactChild[]) => React.ReactChild[]

Arrows

By default, simple arrows are rendered on each side. If you need to customize them and the css is not enough, use the renderArrowPrev and renderArrowNext. The click handler is passed as argument to the prop and needs to be added as click handler in the custom arrow.

renderArrowPrev: (clickHandler: () => void, hasPrev: boolean, label: string) => React.ReactNode;
renderArrowNext: (clickHandler: () => void, hasNext: boolean, label: string) => React.ReactNode;

Indicators

By default, indicators will be rendered as those small little dots in the bottom part of the carousel. To customize them, use the renderIndicator prop.

renderIndicator: (
    clickHandler: (e: React.MouseEvent | React.KeyboardEvent) => void,
    isSelected: boolean,
    index: number,
    label: string
) => React.ReactNode;

Take full control of the carousel

If none of the previous options are enough, you can build your own controls for the carousel. Check an example at http://react-responsive-carousel.js.org/storybook/?path=/story/02-advanced--with-external-controls

Custom Animations

By default, the carousel uses the traditional 'slide' style animation. There is also a built in fade animation, which can be used by passing 'fade' to the animationHandler prop. *note: the 'fade' animation does not support swiping animations, so you may want to set swipeable to false

If you would like something completely custom, you can pass custom animation handler functions to animationHandler, swipeAnimationHandler, and stopSwipingHandler. The animation handler functions accept props and state, and return styles for the contain list, default slide style, selected slide style, and previous slide style. Take a look at the fade animation handler for an idea of how they work:

const fadeAnimationHandler: AnimationHandler = (props, state): AnimationHandlerResponse => {
    const transitionTime = props.transitionTime + 'ms';
    const transitionTimingFunction = 'ease-in-out';

    let slideStyle: React.CSSProperties = {
        position: 'absolute',
        display: 'block',
        zIndex: -2,
        minHeight: '100%',
        opacity: 0,
        top: 0,
        right: 0,
        left: 0,
        bottom: 0,
        transitionTimingFunction: transitionTimingFunction,
        msTransitionTimingFunction: transitionTimingFunction,
        MozTransitionTimingFunction: transitionTimingFunction,
        WebkitTransitionTimingFunction: transitionTimingFunction,
        OTransitionTimingFunction: transitionTimingFunction,
    };

    if (!state.swiping) {
        slideStyle = {
            ...slideStyle,
            WebkitTransitionDuration: transitionTime,
            MozTransitionDuration: transitionTime,
            OTransitionDuration: transitionTime,
            transitionDuration: transitionTime,
            msTransitionDuration: transitionTime,
        };
    }

    return {
        slideStyle,
        selectedStyle: { ...slideStyle, opacity: 1, position: 'relative' },
        prevStyle: { ...slideStyle },
    };
};

Videos

If your carousel is about videos, keep in mind that it's up to you to control which videos will play. Using the renderItem prop, you will get information saying if the slide is selected or not and can use that to change the video state. Only play videos on selected slides to avoid issues. Check an example at http://react-responsive-carousel.js.org/storybook/?path=/story/02-advanced--youtube-autoplay-with-custom-thumbs

=======================

Contributing

The contributing guide contains details on how to create pull requests and setup your dev environment. Please read it before contributing!

=======================

Raising issues

When raising an issue, please add as much details as possible. Screenshots, video recordings, or anything else that can make it easier to reproduce the bug you are reporting.

  • A new option is to create an example with the code that causes the bug. Fork this example from codesandbox and add your code there. Don't forget to fork, save and add the link for the example to the issue.

=======================

License

FOSSA Status

@plurall/reader@neur0base/app-sdk@contiago/toolbardemocensa@knapsack-cloud/msk-design-systemoshinstar-frontendsitka-webaem-core-components-contributions-spacirplus-frontendgonation-site-generatorpayroll-digital-journeyscb-core-payrolllv2500@michaelphan/fake-design-systems@felvin-search-apps/instant-app-detailsffbad-espace-club-componentsclub-design-systemnext-lib-g3gonation-component-librarycensapackagedesignsystemindesigndocument@unofficial-hds/carouselabcdesignabcsystempackagestorypackagedesign@techstack/paper-cms-pagesreact-projects-carousel-ltscalens-component-library@everything-registry/sub-chunk-2607@capfds-ui/docs@capfds-ui/react@anclient/anreact@arigato/fondantav-library@alidogu/react-grid@21st-night/onboarding-webbigcommerce-react-theme-componentsbex-table@castcloudfm/player@concord-consortium/portal-report@babbage/react-prompt@daviking/componentscontus-mf-peers@deepakorg/portfolio@deepakorg/react-packagecore-unifyedxcore-unifyedx-storybook@cbeyond/ui-kit@giant-fe/x-gridomochi-marketing-uirating-component-newr-componentsxxxxxxxxxxxproductive-uiprimrose_admissionspriceprensaprezoreact-device-screenreact-boardroomreact-hub-generic-componentsorbit-reel-uireact-responsive-image-carouselreact-quotes-sliderreact-random-slot-machinereact-rating-webcomponentsperiodicjs.ext.reactappperiodicjs.ext.reactadminpicturopinus-ui-libraryplayground-bc-react-componentspoc-viralityrc-ui-kit-tndrsdkfjhalkdhjfa-widget-uisecondstep-marketingztopia-uiyyf-appvetravel-atoms-controls-newvernost-react-js-gcc-atomunifyed-storybookwebstudio-appxuan-test-design-systemwords-app-componentsutrip-uitofisa-packageticketmelon-webthiscar-next-apptripkit-reactto-component-librarytita-uismartxcaursolskara-componentssize-audit-reportsinobest-rc-image-showsinobest-rc-image-show-testsitetailor-widgetsitetailor-widget-uisitetailor-widget-ui-mishasouls-uisouls-admin-web-dependencies
3.2.23

2 years ago

3.2.22

2 years ago

3.2.21

3 years ago

3.2.20

3 years ago

3.2.19

3 years ago

3.2.17

3 years ago

3.2.18

3 years ago

3.2.16

3 years ago

3.2.15

3 years ago

3.2.14

3 years ago

3.2.13

3 years ago

3.2.12

3 years ago

3.2.11

3 years ago

3.2.10

4 years ago

3.2.9

4 years ago

3.2.8

4 years ago

3.2.7

4 years ago

3.2.6

4 years ago

3.2.5

4 years ago

3.2.4

4 years ago

3.2.3

4 years ago

3.2.1

4 years ago

3.1.58-next.1

4 years ago

3.1.58-next.0

4 years ago

3.1.57

4 years ago

3.1.56

4 years ago

3.1.55

4 years ago

3.1.54

4 years ago

3.1.52

4 years ago

3.1.51

4 years ago

3.1.50

5 years ago

3.1.49

5 years ago

3.1.47

5 years ago

3.1.46

5 years ago

3.1.45

5 years ago

3.1.43

5 years ago

3.1.42

6 years ago

3.1.41

6 years ago

3.1.40

6 years ago

3.1.39

6 years ago

3.1.38

6 years ago

3.1.37

6 years ago

3.1.36

6 years ago

3.1.35

6 years ago

3.1.34

6 years ago

3.1.33

6 years ago

3.1.30

6 years ago

3.1.29

6 years ago

3.1.28

6 years ago

3.1.27

7 years ago

3.1.26

7 years ago

3.1.25

7 years ago

3.1.24

7 years ago

3.1.23

7 years ago

3.1.22

7 years ago

3.1.21

7 years ago

3.1.20

7 years ago

3.1.19

7 years ago

3.1.18

7 years ago

3.1.17

7 years ago

3.1.16

7 years ago

3.1.15

7 years ago

3.1.14

7 years ago

3.1.13

7 years ago

3.1.12

7 years ago

3.1.11

7 years ago

3.1.10

7 years ago

3.1.9

7 years ago

3.1.8

7 years ago

3.1.7

7 years ago

3.1.6

7 years ago

3.1.5

7 years ago

3.1.4

7 years ago

3.1.3

7 years ago

3.1.2

7 years ago

3.1.1

7 years ago

3.1.0

7 years ago

3.0.23

7 years ago

3.0.22

7 years ago

3.0.21

8 years ago

3.0.20

8 years ago

3.0.19

8 years ago

3.0.18

8 years ago

3.0.17

8 years ago

3.0.16

8 years ago

3.0.15

8 years ago

3.0.14

8 years ago

3.0.13

8 years ago

3.0.12

8 years ago

3.0.11

8 years ago

3.0.10

8 years ago

3.0.9

8 years ago

3.0.8

8 years ago

3.0.7

8 years ago

3.0.6

8 years ago

3.0.5

8 years ago

3.0.4

8 years ago

3.0.3

8 years ago

3.0.2

8 years ago

3.0.1

8 years ago

3.0.0

8 years ago

2.0.2

8 years ago

2.0.1

8 years ago

2.0.0

8 years ago

0.1.6

9 years ago

0.1.5

9 years ago

0.1.4

9 years ago

0.1.3

9 years ago

0.1.2

9 years ago

0.1.1

9 years ago

0.1.0

9 years ago

0.0.11

9 years ago

0.0.10

9 years ago

0.0.9

9 years ago

0.0.8

9 years ago

0.0.7

9 years ago

0.0.6

9 years ago

0.0.5

9 years ago

0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago