# react-3d-carousal

> 3D carousal in react

Latest version **1.0.3** (published 2018-04-06) · 0 weekly downloads

> **Deprecated.** This package is deprecated.

## Install

```sh
npm install react-3d-carousal
pnpm add react-3d-carousal
yarn add react-3d-carousal
bun add react-3d-carousal
```

## Health

**Score 10/100 (F)** — status: deprecated.

Negative: deprecated.

## Facts

| | |
|---|---|
| Version | 1.0.3 |
| Published | 2018-04-06 |
| First published | 2018-04-03 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 88.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 169 |
| Author | Suhail C |
| Maintainers | suhailsulu |

## Links

- npm: https://www.npmjs.com/package/react-3d-carousal
- Repository: https://github.com/suhailsulu/react-3d-carousal
- Homepage: https://github.com/suhailsulu/react-3d-carousal#readme
- Issues: https://github.com/suhailsulu/react-3d-carousal/issues
- npm.io page: https://npm.io/package/react-3d-carousal

## Dependencies (1)

- [webpack](https://npm.io/package/webpack.md) ^2.6.1

## Recent versions

- 1.0.3 (latest) — 2018-04-06
- 1.0.2 — 2018-04-06
- 1.0.1 — 2018-04-06
- 1.0.0 — 2018-04-06
- 0.0.8 — 2018-04-06
- 0.0.7 — 2018-04-06
- 0.0.6 — 2018-04-06
- 0.0.5 — 2018-04-06
- 0.0.3 — 2018-04-03
- 0.0.2 — 2018-04-03
- 0.0.1 — 2018-04-03

## README

#React 3D Carousal component
3D carousal component in react.

### Demo 
![Demo](https://i.imgur.com/aa2QTOx.gif)

jsfiddle (https://jsfiddle.net/suhailsulu/8hnqaz2c/) 

##Installation
####npm 

```
 npm i react-3d-carousal
```
####yarn
```
 yarn add react-3d-carousal
```
##### Add fa-css in public.html for arrows

```
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
```

#####Importing the component
```shell
import {Carousal} from 'react-3d-carousal';
or 
var Carousal = require( 'react-3d-carousal').Carousal;
.
.
.
let slides = [
    <img  src="https://picsum.photos/800/300/?random" alt="1" />,
    <img  src="https://picsum.photos/800/301/?random" alt="2" />  ,
    <img  src="https://picsum.photos/800/302/?random" alt="3" />  ,
    <img  src="https://picsum.photos/800/303/?random" alt="4" />  ,
    <img src="https://picsum.photos/800/304/?random" alt="5" />   ];
.
.
.
<Carousal slides={slides}/>

```
###props 
<b>slides :-</b> Array of react components
you can give any component in the slides like images, divs or even your custom components

---
_Source: https://npm.io/package/react-3d-carousal · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
