走马灯组件，暂时不支持选择方向,当作轮播图使用


```js
      <Carousel 
        style={{height:300, position:'relative'}}
        loop={true}                                         // 是否循环
        duration={1000}                                     // 动画执行时间
        autoplay={true}                                     // 是否自动播放
        autoplayTimeout={2400}                              // 自动播放时的间隔
        sensitivity={0.1}                                   // 灵敏度，数值越小越灵敏 0-1
        disabled={false}                                    // 是否禁用触摸功能
        showPagination={true}                               // 是否显示分页器（当只有一页时不显示）
        paginationContainerStyle={{textAlign:"right"}}      // 分页器容器样式
        paginationDotStyle={{backgroundColor:"red"}}        // 分页器的点的通用样式
        >
        <img style={stylesInit.img} src='http://mvimg2.meitudata.com/5630bce150dba1926.jpg' />
        <img style={stylesInit.img} src='http://img.zcool.cn/community/01bf1655e514b16ac7251df840273f.jpg' />
      </Carousel>
```

所有属性均有默认属性，所以你不必担心，没有赋值会报错。
`style`中的`height`属性，如果没有设置将会默认为200
分页器为决定定位，使用时，注意父级的`posiiton:relative` 

