mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 04:00:13 +08:00
35 lines
607 B
JavaScript
35 lines
607 B
JavaScript
import Carousel from 'react-slick';
|
|
import React from 'react';
|
|
import assign from 'object-assign';
|
|
|
|
var AntCarousel = React.createClass({
|
|
|
|
getDefaultProps() {
|
|
return {
|
|
dots: true,
|
|
arrows: false
|
|
};
|
|
},
|
|
|
|
render() {
|
|
var props = assign({}, this.props);
|
|
|
|
if (props.effect === 'fade') {
|
|
props.fade = true;
|
|
}
|
|
|
|
var className = 'ant-carousel';
|
|
if (props.vertical) {
|
|
className = className + ' ant-carousel-vertical';
|
|
}
|
|
|
|
return (
|
|
<div className={className}>
|
|
<Carousel {...props} />
|
|
</div>
|
|
);
|
|
}
|
|
});
|
|
|
|
export default AntCarousel;
|