You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
972 B
45 lines
972 B
3 years ago
|
---
|
||
|
order: 7
|
||
|
title:
|
||
|
zh-CN: 受控的预览
|
||
|
en-US: Controlled Preview
|
||
|
---
|
||
|
|
||
|
## zh-CN
|
||
|
|
||
|
可以使预览受控。
|
||
|
|
||
|
## en-US
|
||
|
|
||
|
You can make preview controlled.
|
||
|
|
||
|
```jsx
|
||
|
import React, { useState } from 'react';
|
||
|
import { Image, Button } from 'antd';
|
||
|
|
||
|
function ImageDemo() {
|
||
|
const [visible, setVisible] = useState(false);
|
||
|
return (
|
||
|
<>
|
||
|
<Button type="primary" onClick={() => setVisible(true)}>
|
||
|
show image preview
|
||
|
</Button>
|
||
|
<Image
|
||
|
width={200}
|
||
|
style={{ display: 'none' }}
|
||
|
src="https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png?x-oss-process=image/blur,r_50,s_50/quality,q_1/resize,m_mfit,h_200,w_200"
|
||
|
preview={{
|
||
|
visible,
|
||
|
src: 'https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png',
|
||
|
onVisibleChange: value => {
|
||
|
setVisible(value);
|
||
|
},
|
||
|
}}
|
||
|
/>
|
||
|
</>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
ReactDOM.render(<ImageDemo />, mountNode);
|
||
|
```
|