All Projects → akiran → React Slick

akiran / React Slick

Licence: mit
React carousel component

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to React Slick

ngx-slick-carousel
Angular 11+ wrapper for slick plugin
Stars: ✭ 82 (-99.19%)
Mutual labels:  carousel, slick
Vue Slick Carousel
🚥Vue Slick Carousel with True SSR Written for ⚡Faster Luxstay
Stars: ✭ 447 (-95.56%)
Mutual labels:  slick, carousel
Vue Agile
🎠 A carousel component for Vue.js
Stars: ✭ 1,167 (-88.41%)
Mutual labels:  slick, carousel
Tiny Swiper
Ingenious JavaScript Carousel powered by wonderful plugins. Lightweight yet extensible. Import plugins as needed, No more, no less.
Stars: ✭ 1,061 (-89.46%)
Mutual labels:  carousel
L2t Paper Slider
Polymer element for displaying slides in a carousel
Stars: ✭ 53 (-99.47%)
Mutual labels:  carousel
React Native Snap Carousel
Swiper/carousel component for React Native featuring previews, multiple layouts, parallax images, performant handling of huge numbers of items, and more. Compatible with Android & iOS.
Stars: ✭ 9,151 (-9.1%)
Mutual labels:  carousel
React Siema
ReactSiema Demo
Stars: ✭ 90 (-99.11%)
Mutual labels:  carousel
Ng Bootstrap
Angular powered Bootstrap
Stars: ✭ 7,872 (-21.8%)
Mutual labels:  carousel
Play Slick3 Example
A simple skeleton for play scala slick applications.
Stars: ✭ 83 (-99.18%)
Mutual labels:  slick
Vue Snap
⚡️ Lightweight Carousel based on CSS Scroll Snapping (Vue 2/3)
Stars: ✭ 60 (-99.4%)
Mutual labels:  carousel
Morphist
A simple, high-performance and cross-browser jQuery slider / slideshow / carousel plugin for child objects powered by Animate.css.
Stars: ✭ 60 (-99.4%)
Mutual labels:  carousel
Vuejs Carousel
Complete photo carousel build with VueJS and web standards in mind
Stars: ✭ 53 (-99.47%)
Mutual labels:  carousel
React Native Carousel View
react-native carousel, support in both Android and iOS
Stars: ✭ 70 (-99.3%)
Mutual labels:  carousel
Macro Carousel
Carousel as a Vanilla Web Component.
Stars: ✭ 53 (-99.47%)
Mutual labels:  carousel
Material2 Carousel
A carousel component for Angular using Material
Stars: ✭ 84 (-99.17%)
Mutual labels:  carousel
Ngx Siema
Lightweight and simple carousel with no dependencies.
Stars: ✭ 46 (-99.54%)
Mutual labels:  carousel
Stacked Cards
Give your content boxes a stacked cards look with each card swapping with other.
Stars: ✭ 83 (-99.18%)
Mutual labels:  carousel
React Carousel
Lightweight carousel component for react
Stars: ✭ 56 (-99.44%)
Mutual labels:  carousel
Paging Collection View Layout
custom collection view layout that allows you to page by cell, not screen
Stars: ✭ 65 (-99.35%)
Mutual labels:  carousel
React Native Swipeable Parallax Carousel
React Native Swipeable Parallax Carousel
Stars: ✭ 98 (-99.03%)
Mutual labels:  carousel

react-slick

Backers on Open Collective Sponsors on Open Collective Join the chat at https://gitter.im/akiran/react-slick

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

Contributing

Please see the contributing guidelines

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].