1.0.1 • Published 4 years ago

react-barrel v1.0.1

Weekly downloads
1
License
ISC
Repository
github
Last release
4 years ago

使用方式

简单的使用方式

    <ReactBarrel
        data={[{src:imgurl}]]}
    />

API

ReactBarrel

参数说明类型默认值版本
wrapClassName外层容器的类名,用于修改样式String''1.0.0
baseHeight基准高度Number2501.0.0
width容器的宽度Number继承父级的宽度1.0.0
margin设置每个元素之间的间距Number51.0.0
children子元素string|ReactNode''1.0.0
autoload自动加载图片,自动从图片中获取宽高,进行布局。Booleantrue1.0.0
data渲染的数据Array[]1.0.0
renderItem定义渲染,回调 item,index 样式包含在 item 中,用于进行自定义调整。(item,index)=>{}function1.0.0

data 属性说明

interface propsData {
    width?: number; //属性autoload 为flase 时,需存在
    height?: number;//属性autoload 为flase 时,需存在
    src?: string;  //属性autoload 为true 时,需存在
}