2020-08-22 22:02:20 +08:00
|
|
|
---
|
|
|
|
category: Components
|
|
|
|
type: Data Display
|
|
|
|
title: Image
|
|
|
|
cols: 2
|
2020-08-27 17:02:02 +08:00
|
|
|
cover: https://gw.alipayobjects.com/zos/antfincdn/D1dXz9PZqa/image.svg
|
2020-08-22 22:02:20 +08:00
|
|
|
---
|
|
|
|
|
|
|
|
Previewable image.
|
|
|
|
|
|
|
|
## When To Use
|
|
|
|
|
|
|
|
- When you need to display pictures.
|
|
|
|
- Display when loading a large image or fault tolerant handling when loading fail.
|
|
|
|
|
|
|
|
## API
|
|
|
|
|
|
|
|
| Property | Description | Type | Default | Version |
|
|
|
|
| --- | --- | --- | --- | --- |
|
|
|
|
| alt | Image description | string | - | 4.6.0 |
|
|
|
|
| fallback | Load failure fault-tolerant src | string | - | 4.6.0 |
|
|
|
|
| height | Image height | string \| number | - | 4.6.0 |
|
|
|
|
| placeholder | Load placeholder, use default placeholder when set `true` | ReactNode | - | 4.6.0 |
|
2020-09-28 14:15:23 +08:00
|
|
|
| preview | preview config, disabled when `false` | boolean \| [previewType](#previewType) | true | 4.6.0 [previewType](#previewType):4.7.0 |
|
2020-08-22 22:02:20 +08:00
|
|
|
| src | Image path | string | - | 4.6.0 |
|
|
|
|
| width | Image width | string \| number | - | 4.6.0 |
|
2021-02-02 13:35:37 +08:00
|
|
|
| onError | Load failed callback | (event: Event) => void | - | 4.12.0 |
|
2020-08-22 22:02:20 +08:00
|
|
|
|
2020-09-28 14:15:23 +08:00
|
|
|
### previewType
|
|
|
|
|
2020-10-10 15:26:05 +08:00
|
|
|
```js
|
2020-09-28 14:15:23 +08:00
|
|
|
{
|
2020-10-10 15:26:05 +08:00
|
|
|
visible?: boolean;
|
|
|
|
onVisibleChange?: (visible, prevVisible) => void;
|
2020-10-22 11:25:25 +08:00
|
|
|
getContainer?: string | HTMLElement | (() => HTMLElement); // V4.8.0
|
2021-01-03 19:45:14 +08:00
|
|
|
src?: string; // V4.10.0
|
2021-01-04 20:39:20 +08:00
|
|
|
mask?: ReactNode; // V4.9.0
|
|
|
|
maskClassName?: string; // V4.11.0
|
2021-02-01 15:37:01 +08:00
|
|
|
current?: number; // V4.12.0 Only support PreviewGroup.
|
2020-09-28 14:15:23 +08:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-10-21 10:33:43 +08:00
|
|
|
Other attributes [<img>](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#Attributes)
|