React Slick

Alternatives To React Slick
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
React Slick10,8669,1971,23524 days ago115April 17, 2022465mitJavaScript
React carousel component
Keen Slider3,809352 months ago100September 19, 202244mitTypeScript
The HTML touch slider carousel with the most native feeling you will get.
Splide3,6583217 days ago148September 21, 202224mitTypeScript
Splide is a lightweight, flexible and accessible slider/carousel written in TypeScript. No dependencies, no Lighthouse errors.
React Image Gallery3,3445179217 days ago110July 30, 202214mitJavaScript
React carousel image gallery component with thumbnail support 🖼
Embla Carousel3,0803162 days ago184September 12, 20229mitTypeScript
www.embla-carousel.com — A lightweight carousel library with fluid motion and great swipe precision.
Nuka Carousel2,85149113310 days ago131September 22, 202223otherTypeScript
Small, fast, and accessibility-first React carousel library with easily customizable UI and behavior to fit your brand and site.
React Awesome Slider2,60142134 months ago45February 21, 202076mitJavaScript
React content transition slider. Awesome Slider is a 60fps, light weight, performant component that renders an animated set of production ready UI general purpose sliders with fullpage transition support for NextJS and GatsbyJS. 🖥️ 📱
React Responsive Carousel2,3717941372 months ago122March 03, 202228mitTypeScript
React.js Responsive Carousel (with Swipe)
Egjs Flicking2,3053143 days ago107September 15, 202239mitTypeScript
🎠 ♻️ Everyday 30 million people experience. It's reliable, flexible and extendable carousel.
React Images2,2881,1291802 years ago77April 29, 202149mitJavaScript
🌄 A mobile-friendly, highly customizable, carousel component for displaying media in ReactJS
Alternatives To React Slick
Select To Compare


Alternative Project Comparisons
Readme

react-slick

Backers on Open Collective Sponsors on Open Collective

Carousel component built with React. It is a react port of slick carousel

Documentation

Installation

npm

npm install react-slick --save

yarn

yarn add react-slick

Also install slick-carousel for css and font

npm install slick-carousel

// Import css files
import "slick-carousel/slick/slick.css";
import "slick-carousel/slick/slick-theme.css";

or add cdn link in your html

<link
  rel="stylesheet"
  type="text/css"
  charset="UTF-8"
  href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.6.0/slick.min.css"
/>
<link
  rel="stylesheet"
  type="text/css"
  href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.6.0/slick-theme.min.css"
/>

PlayGround

Example

import React from "react";
import Slider from "react-slick";

export default function SimpleSlider() {
  var settings = {
    dots: true,
    infinite: true,
    speed: 500,
    slidesToShow: 1,
    slidesToScroll: 1
  };
  return (
    <Slider {...settings}>
      <div>
        <h3>1</h3>
      </div>
      <div>
        <h3>2</h3>
      </div>
      <div>
        <h3>3</h3>
      </div>
      <div>
        <h3>4</h3>
      </div>
      <div>
        <h3>5</h3>
      </div>
      <div>
        <h3>6</h3>
      </div>
    </Slider>
  );
}

Props

For all available props, go here.

Methods

For all available methods, go here

Development

Want to run demos locally

git clone https://github.com/akiran/react-slick
cd react-slick
npm install
npm start
open http://localhost:8080

Community

Join our discord channel to discuss react-slick bugs and ask for help

Contributing

Please see the contributing guidelines

Popular Carousel Projects
Popular Reactjs Projects
Popular User Interface Components Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Javascript
Reactjs
Carousel
Carousel Component