-
Notifications
You must be signed in to change notification settings - Fork 630
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
99 additions
and
127 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,69 +1,15 @@ | ||
# React Responsive Carousel (React 0.14) | ||
|
||
* Note: If you need support for IE8 or older versions of React, install version 0.1.6 | ||
|
||
## Demo | ||
|
||
http://leandrowd.github.io/react-responsive-carousel/ | ||
## Demos and docs: | ||
[http://leandrowd.github.io/react-responsive-carousel/](http://leandrowd.github.io/react-responsive-carousel/) | ||
|
||
* Note: If you need support for IE8 or older versions of React, install version 0.1.6 | ||
|
||
## Installing as a package | ||
|
||
`npm install react-responsive-carousel --save` | ||
|
||
|
||
## Running locally | ||
|
||
To run it on your local environment just: | ||
|
||
- `git clone [email protected]:leandrowd/react-responsive-carousel.git` | ||
- `npm install` | ||
- `gulp` | ||
- Open your favourite browser on `localhost:8000` | ||
|
||
To generate the npm package run `gulp package`. It will transpile the jsx to js and copy the css into the lib folder. | ||
|
||
|
||
## Contributing | ||
|
||
Please, feel free to contributing. You may file an issue or submit a pull request! | ||
|
||
|
||
## Getting started | ||
|
||
### Slider with controls | ||
|
||
- Javascript / Jsx: | ||
|
||
```javascript | ||
/** @jsx React.DOM */ | ||
var React = require('react'); | ||
var Carousel = require('./components/Carousel'); | ||
|
||
var DemoSliderControls = React.createClass({ | ||
render() { | ||
return ( | ||
<div className="demo-slider"> | ||
<Carousel | ||
type="slider" | ||
items={ sliderImages } | ||
showControls={true} | ||
showStatus={true} /> | ||
</div> | ||
); | ||
} | ||
}); | ||
|
||
React.render(<DemoSliderControls />, document.querySelector('.demo-slider-controls')); | ||
``` | ||
|
||
- Css: | ||
|
||
```css | ||
<link rel="stylesheet" href="carousel.css"/> | ||
``` | ||
|
||
- Props: | ||
- Possible properties: | ||
- (Array) items | ||
- (Boolean) showControls | ||
- (Boolean) showStatus | ||
|
@@ -72,34 +18,62 @@ React.render(<DemoSliderControls />, document.querySelector('.demo-slider-contro | |
- (Function) onSelectItem | ||
- Triggered when an item is selected | ||
|
||
- Usage: | ||
|
||
### Carousel | ||
|
||
- Javascript / Jsx: | ||
### Slider with controls | ||
|
||
```javascript | ||
/** @jsx React.DOM */ | ||
var React = require('react'); | ||
var Carousel = require('./components/Carousel'); | ||
|
||
var DemoCarousel = React.createClass({ | ||
render() { | ||
return ( | ||
<div className="demo-carousel"> | ||
<Carousel items={ carouselImages } /> | ||
</div> | ||
); | ||
} | ||
}); | ||
|
||
React.render(<DemoCarousel />, document.querySelector('.demo-carousel')); | ||
var ReactDOM = require('react-dom'); | ||
var Carousel = require('react-responsive-carousel').Carousel; | ||
|
||
var DemoSliderControls = function(){ | ||
return ( | ||
<Carousel type="slider" showControls={true} showStatus={true}> | ||
<img src="assets/1.jpeg" /> | ||
<img src="assets/2.jpeg" /> | ||
<img src="assets/3.jpeg" /> | ||
<img src="assets/4.jpeg" /> | ||
<img src="assets/5.jpeg" /> | ||
<img src="assets/6.jpeg" /> | ||
<img src="assets/7.jpeg" /> | ||
</Carousel> | ||
); | ||
}; | ||
|
||
ReactDOM.render(<DemoSliderControls />, document.querySelector('.demo-slider-controls')); | ||
|
||
// Don't forget to include the css in your page | ||
// <link rel="stylesheet" href="carousel.css"/> | ||
``` | ||
|
||
|
||
- Css: | ||
|
||
```css | ||
<link rel="stylesheet" href="carousel.css"/> | ||
### Carousel | ||
|
||
```javascript | ||
var React = require('react'); | ||
var ReactDOM = require('react-dom'); | ||
var ImageGallery = require('react-responsive-carousel').ImageGallery; | ||
|
||
var DemoGallery = function() { | ||
return ( | ||
<ImageGallery showControls={true} showStatus={true}> | ||
<img src="assets/1.jpeg" /> | ||
<img src="assets/2.jpeg" /> | ||
<img src="assets/3.jpeg" /> | ||
<img src="assets/4.jpeg" /> | ||
<img src="assets/5.jpeg" /> | ||
<img src="assets/6.jpeg" /> | ||
</ImageGallery> | ||
); | ||
}; | ||
|
||
ReactDOM.render(<DemoGallery />, document.querySelector('.demo-gallery')); | ||
|
||
// Don't forget to include the css in your page | ||
// <link rel="stylesheet" href="imageGallery.css"/> | ||
// <link rel="stylesheet" href="carousel.css"/> | ||
``` | ||
|
||
- Props: | ||
|
@@ -112,89 +86,87 @@ React.render(<DemoCarousel />, document.querySelector('.demo-carousel')); | |
- Triggered when an item is selected | ||
|
||
|
||
|
||
### Image Gallery | ||
|
||
- Javascript / Jsx: | ||
```javascript | ||
/** @jsx React.DOM */ | ||
var React = require('react'); | ||
var ImageGallery = require('./components/ImageGallery'); | ||
|
||
var DemoGallery = React.createClass({ | ||
render() { | ||
return ( | ||
<div className="demo-image-gallery"> | ||
<ImageGallery images={ galleryImages } /> | ||
</div> | ||
); | ||
} | ||
}); | ||
|
||
React.render(<DemoGallery />, document.querySelector('.demo-gallery')); | ||
``` | ||
|
||
- Css: | ||
```css | ||
<link rel="stylesheet" href="imageGallery.css"/> | ||
<link rel="stylesheet" href="carousel.css"/> | ||
var ReactDOM = require('react-dom'); | ||
var Carousel = require('react-responsive-carousel').Carousel; | ||
|
||
var DemoCarousel = function() { | ||
return ( | ||
<Carousel> | ||
<img src="assets/1.jpeg" /> | ||
<img src="assets/2.jpeg" /> | ||
<img src="assets/3.jpeg" /> | ||
<img src="assets/4.jpeg" /> | ||
<img src="assets/5.jpeg" /> | ||
<img src="assets/6.jpeg" /> | ||
<img src="assets/7.jpeg" /> | ||
</Carousel> | ||
); | ||
}; | ||
|
||
ReactDOM.render(<DemoCarousel />, document.querySelector('.demo-carousel')); | ||
|
||
// Don't forget to include the css in your page | ||
// <link rel="stylesheet" href="carousel.css"/> | ||
``` | ||
|
||
- Props: | ||
- images | ||
|
||
|
||
|
||
### How to build your own gallery | ||
|
||
So simple, just add one carousel[type=slider] and another carousel sending the same parameters for both: | ||
|
||
- Javascript / Jsx: | ||
|
||
```javascript | ||
/** @jsx React.DOM */ | ||
var React = require('react/addons'); | ||
var React = require('react'); | ||
var Carousel = require('./Carousel'); | ||
|
||
module.exports = React.createClass({ | ||
|
||
propsTypes: { | ||
images: React.PropTypes.array.isRequired | ||
getDefaultProps () { | ||
return { | ||
selectedItem: 0 | ||
} | ||
}, | ||
|
||
getInitialState () { | ||
return { | ||
currentImage: 0 | ||
selectedItem: this.props.selectedItem | ||
} | ||
}, | ||
|
||
selectItem (selectedItem) { | ||
this.setState({ | ||
currentImage: selectedItem | ||
selectedItem: selectedItem | ||
}); | ||
}, | ||
|
||
render () { | ||
var { images } = this.props; | ||
var { current } = this.state; | ||
var mainImage = (images && images[current] && images[current].url); | ||
|
||
return ( | ||
<div className="image-gallery"> | ||
<Carousel | ||
type="slider" | ||
items={ images } | ||
selectedItem={this.state.currentImage} | ||
onChange={this.selectItem} | ||
onSelectItem={ this.selectItem } /> | ||
|
||
<Carousel | ||
items={ images } | ||
selectedItem={this.state.currentImage} | ||
onSelectItem={ this.selectItem } /> | ||
<Carousel type="slider" selectedItem={this.state.selectedItem} showControls={this.props.showControls} showStatus={this.props.showStatus} onChange={this.selectItem} onSelectItem={ this.selectItem }> | ||
{ this.props.children } | ||
</Carousel> | ||
<Carousel selectedItem={this.state.selectedItem} onSelectItem={ this.selectItem }> | ||
{ this.props.children } | ||
</Carousel> | ||
</div> | ||
); | ||
} | ||
}); | ||
``` | ||
|
||
## Running locally | ||
To run it on your local environment just: | ||
|
||
- `git clone [email protected]:leandrowd/react-responsive-carousel.git` | ||
- `npm install` | ||
- `gulp` | ||
- Open your favourite browser on `localhost:8000` | ||
|
||
To generate the npm package run `gulp package`. It will transpile the jsx to js and copy the css into the lib folder. | ||
|
||
## Contributing | ||
Please, feel free to contributing. You may file an issue or submit a pull request! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters