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.
30 lines
404 B
30 lines
404 B
4 years ago
|
---
|
||
|
order: 0
|
||
|
title:
|
||
|
zh-CN: 基本用法
|
||
|
en-US: Basic Usage
|
||
|
---
|
||
|
|
||
|
## zh-CN
|
||
|
|
||
|
单击图像可以放大显示。
|
||
|
|
||
|
## en-US
|
||
|
|
||
|
Click the image to zoom in.
|
||
|
|
||
|
```jsx
|
||
|
import { Image } from 'antd';
|
||
|
|
||
|
function ImageDemo() {
|
||
|
return (
|
||
|
<Image
|
||
|
width={200}
|
||
|
src="https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png"
|
||
|
/>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
ReactDOM.render(<ImageDemo />, mountNode);
|
||
|
```
|