1.Carousel 走马灯
显示左右切换箭头 arrows:true
this.state = {
settings: {
variableWidth: true,
arrows: true,
autoplay: true,
speed: 2000,
autoplaySpeed: 5000,
cssEase: 'linear'
}
}
render() {
const { settings } = this.state
return (
<Carousel
{...settings}
>
{
... //循环图片
}
</Carousel>
)
}