1.1.0 • Published 3 years ago

react-img-extend v1.1.0

Weekly downloads
7
License
ISC
Repository
-
Last release
3 years ago

欢迎使用react图片扩展组件

此组件并无跨域问题,任何图片都可以使用,请放心使用

安装

 npm install react-img-extend --save

例子演示: https://dsmelon.github.io/react-img-extend/dist/index.html

api

参数名类型默认值说明
classNamestring容器的类名
imgSrcstring图片的链接
directionstringbottom扩展方向left: 向左扩展right: 向右扩展top: 向上扩展bottom: 向下扩展grid9: 九宫格扩展
withReversebooleanfalse扩展时是否伴随着翻转九宫格无效
rowRepeatnumber1扩展的像素行数九宫格无效
splitnumber[][8,8,8,8]九宫格切割断点具体位置用法看下图
repeatTypestringstretch九宫格填充类型stretch: 拉伸tile: 平铺

九宫格断点和填充类型说明

npm.io

使用方法

<ImgExtend
    withReverse={true}
    rowRepeat="stretch"
    direction="bottom"
    imgSrc={src}
    ...其余配置
>
    你内部的内容
</ImgExtend>

github地址: https://github.com/dsmelon/react-img-extend