An open API service indexing awesome lists of open source software.

https://github.com/syadav214/react-carousel-table

React component of Carousel inside a table styled in bootstrap
https://github.com/syadav214/react-carousel-table

bootstrap carousel components javascript react-components reactjs

Last synced: 3 months ago
JSON representation

React component of Carousel inside a table styled in bootstrap

Awesome Lists containing this project

README

          

# react-carousel-table

React component of Carousel inside a table styled in bootstrap

## Example

![alt text](Carousel.png)

```html

```

```jsx
import React, { Component } from 'react';
import 'font-awesome/css/font-awesome.min.css';
import Carousel from 'react-carousel-table';

const images = [
{
id: '1',
url:
'https://images.pexels.com/photos/67636/rose-blue-flower-rose-blooms-67636.jpeg?auto=format%2Ccompress&cs=tinysrgb&dpr=1&w=500'
},
{
id: '2',
url:
'https://images.pexels.com/photos/414612/pexels-photo-414612.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940'
}
];

class App extends Component {
render() {
return (





Carousel in a Table





Demo








);
}
}

export default App;
```

## Install

```cli
npm install react-carousel-table
npm install font-awesome
```

## Props

##### `images`

An array of object with properties like 'id' and 'url'.
```js
const images = [
{
id: '1',
url:
'https://images.pexels.com/photos/67636/rose-blue-flower-rose-blooms-67636.jpeg?auto=format%2Ccompress&cs=tinysrgb&dpr=1&w=500'
},
{
id: '2',
url:
'https://images.pexels.com/photos/414612/pexels-photo-414612.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940'
}
];
```

---

##### `pxs`

Sets the width and height of image box.

## License

MIT