Popularity
0.6
Stable
Activity
0.0
Stable
1
1
4

Programming language: JavaScript
License: MIT License
Tags: UI Components     Carousel    

react-carouselize alternatives and similar libraries

Based on the "Carousel" category.
Alternatively, view react-carouselize alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of react-carouselize or a related project?

Add another 'Carousel' Library

README

npm travis build Coverage Status

React-Carouselize

The simplest carousel component you can find in the React ecosystem.

Getting Started

  1. Install the package with yarn add react-carouselize or npm install --save react-carouselize

  2. Import the component

    import Carouselize from 'react-carouselize';
    
  3. Wrap whatever you want to be a carousel

    <Carouselize>
    ....
    </Carouselize>
    

Properties

Name Type Default value Required Description
duration number 5000 no Animation duration in milliseconds
animation string v-scroll no One of v-scroll (vertical scroll), h-scroll (horizontal scroll) or fade
navigation string left no Position of bullets, between top, right, bottom, left
enableNavigation boolean true no Enable/disable click on bullets
enableKeys boolean true no Enable/disable scrolling with left or right keys

Contibuting

Check the related file CONTRIBUTING