oni-react-preview
v0.0.4
Published
A web - end photo browser that mimics QQ(一个模仿QQ的web端图片浏览器)
Downloads
6
Readme
oni-react-preview
Getting Started
Install
# Install
$ npm install oni-react-preview --save
Usage Examples
import PreviewImage from 'oni-react-preview'
function App(props) {
const ImageUrl = {
isShow:true,
urls:[
'https://avatar.csdn.net/A/1/F/3_onil_chen.jpg',
],
current:0,
onCloseHander:()=>{
//可选,点击回调
}
}
return (
<div className={styles.wrap}>
<PreviewImage {...ImageUrl}></PreviewImage>
</div>
);
}