react-responsive-carousel vs react-image-gallery vs react-alice-carousel vs react-slick
React Carousel Libraries
react-responsive-carouselreact-image-galleryreact-alice-carouselreact-slickSimilar Packages:

React Carousel Libraries

React carousel libraries are specialized components designed to create interactive and visually appealing image sliders or carousels within React applications. These libraries provide developers with pre-built functionalities to manage the display of images or content in a rotating or sliding format, enhancing user engagement and experience. Each library comes with its own set of features, customization options, and performance characteristics, making them suitable for different use cases and design requirements.

Npm Package Weekly Downloads Trend

3 Years

Github Stars Ranking

Stat Detail

Package
Downloads
Stars
Size
Issues
Publish
License
react-responsive-carousel478,3102,682188 kB5-MIT
react-image-gallery284,6313,933123 kB216 days agoMIT
react-alice-carousel085495.7 kB92 years agoMIT
react-slick011,933775 kB4897 months agoMIT

Feature Comparison: react-responsive-carousel vs react-image-gallery vs react-alice-carousel vs react-slick

Ease of Use

  • react-responsive-carousel:

    react-responsive-carousel provides a simple API that is easy to understand, but it also offers advanced features for developers who need more control. Its responsive nature makes it a go-to for mobile-friendly applications.

  • react-image-gallery:

    react-image-gallery offers a user-friendly interface with a comprehensive set of props that allow for easy customization. It is particularly suited for those who want to implement a gallery without extensive coding.

  • react-alice-carousel:

    react-alice-carousel is designed for simplicity, allowing developers to quickly implement a carousel with minimal configuration. Its API is straightforward, making it easy for beginners to integrate and customize.

  • react-slick:

    react-slick has a slightly steeper learning curve due to its extensive features, but once mastered, it offers powerful customization options that can cater to complex carousel needs.

Customization Options

  • react-responsive-carousel:

    react-responsive-carousel offers a wide range of customization options, including the ability to control the number of items displayed, navigation styles, and transition effects, making it adaptable to various design requirements.

  • react-image-gallery:

    react-image-gallery excels in customization, providing options for thumbnails, custom renderers, and additional controls, allowing developers to create a unique gallery experience tailored to their application.

  • react-alice-carousel:

    react-alice-carousel allows for various customization options, including custom styles, transition effects, and the ability to add custom components within the carousel, making it versatile for different design needs.

  • react-slick:

    react-slick is highly customizable, supporting a range of settings for autoplay, speed, slides to show, and more, allowing developers to fine-tune the carousel to fit specific use cases.

Performance

  • react-responsive-carousel:

    react-responsive-carousel is built with performance in mind, offering features like lazy loading and optimized rendering to ensure fast loading times and smooth interactions across devices.

  • react-image-gallery:

    react-image-gallery is designed to handle large sets of images efficiently, using lazy loading to improve performance and reduce initial load times, making it ideal for image-heavy applications.

  • react-alice-carousel:

    react-alice-carousel is lightweight and optimized for performance, ensuring smooth transitions and minimal lag, which is crucial for maintaining a responsive user experience.

  • react-slick:

    react-slick is known for its high performance, handling complex carousels with ease. It efficiently manages rendering and updates, ensuring that even with many slides, the performance remains optimal.

Mobile Responsiveness

  • react-responsive-carousel:

    As its name suggests, react-responsive-carousel excels in responsiveness, automatically adjusting the number of visible items and navigation controls based on the viewport size, ensuring usability on mobile devices.

  • react-image-gallery:

    react-image-gallery includes responsive design features that allow it to adjust the layout based on screen size, making it suitable for mobile-first applications.

  • react-alice-carousel:

    react-alice-carousel is designed to be responsive out of the box, ensuring that the carousel adapts well to different screen sizes and orientations, providing a seamless experience on mobile devices.

  • react-slick:

    react-slick is highly responsive, allowing for configuration of different settings for various breakpoints, making it an excellent choice for applications that require a consistent experience across devices.

Community and Support

  • react-responsive-carousel:

    react-responsive-carousel boasts a large community and extensive documentation, ensuring that developers can find solutions to common issues and share best practices easily.

  • react-image-gallery:

    react-image-gallery has a solid user base and good documentation, providing ample resources for troubleshooting and customization, which is beneficial for developers seeking help.

  • react-alice-carousel:

    react-alice-carousel has a growing community and offers decent documentation, making it easier for developers to find support and examples for implementation.

  • react-slick:

    react-slick has a robust community and is widely used, which means there are plenty of resources, tutorials, and community support available, making it a reliable choice for developers.

How to Choose: react-responsive-carousel vs react-image-gallery vs react-alice-carousel vs react-slick

  • react-responsive-carousel:

    Opt for react-responsive-carousel when you need a responsive design that adapts well to various screen sizes, along with built-in support for multiple items per slide and extensive customization options for navigation and transitions.

  • react-image-gallery:

    Select react-image-gallery if you require a feature-rich gallery with support for thumbnails, fullscreen mode, and custom rendering options, making it ideal for showcasing a collection of images with detailed interactions.

  • react-alice-carousel:

    Choose react-alice-carousel for its lightweight design and ease of use, especially if you need a simple, customizable carousel that supports touch gestures and has a variety of transition effects.

  • react-slick:

    Pick react-slick for its extensive features, including lazy loading, variable widths, and autoplay capabilities, making it suitable for complex carousels that require high customization and performance.

README for react-responsive-carousel

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