mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 09:49:57 +08:00
43 lines
1.1 KiB
Markdown
43 lines
1.1 KiB
Markdown
|
---
|
||
|
order: 6
|
||
|
title:
|
||
|
zh-CN: 相册模式
|
||
|
en-US: Preview from one image
|
||
|
---
|
||
|
|
||
|
## zh-CN
|
||
|
|
||
|
从一张图片点开相册。
|
||
|
|
||
|
## en-US
|
||
|
|
||
|
Preview a collection from one image.
|
||
|
|
||
|
```jsx
|
||
|
import React, { useState } from 'react';
|
||
|
import { Image } from 'antd';
|
||
|
|
||
|
const App = () => {
|
||
|
const [visible, setVisible] = useState(false);
|
||
|
return (
|
||
|
<>
|
||
|
<Image
|
||
|
preview={{ visible: false }}
|
||
|
width={200}
|
||
|
src="https://gw.alipayobjects.com/zos/antfincdn/LlvErxo8H9/photo-1503185912284-5271ff81b9a8.webp"
|
||
|
onClick={() => setVisible(true)}
|
||
|
/>
|
||
|
<div style={{ display: 'none' }}>
|
||
|
<Image.PreviewGroup preview={{ visible, onVisibleChange: vis => setVisible(vis) }}>
|
||
|
<Image src="https://gw.alipayobjects.com/zos/antfincdn/LlvErxo8H9/photo-1503185912284-5271ff81b9a8.webp" />
|
||
|
<Image src="https://gw.alipayobjects.com/zos/antfincdn/cV16ZqzMjW/photo-1473091540282-9b846e7965e3.webp" />
|
||
|
<Image src="https://gw.alipayobjects.com/zos/antfincdn/x43I27A55%26/photo-1438109491414-7198515b166b.webp" />
|
||
|
</Image.PreviewGroup>
|
||
|
</div>
|
||
|
</>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
ReactDOM.render(<App />, mountNode);
|
||
|
```
|