mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-15 17:31:25 +08:00
e3ee4e87aa
* feat: 🎉 Image component
* fix color
* fix style naming and sort api doc order
* remove onPreviewClose doc
* use animation-duration var
* use box and modal-mask mixins
* use box and modal-mask mixins
* improve style
* improve fallback demo src
* add cover
* improve demo
* update demo snapshots
* upgrade rc-image, naming Random -> Reload
* extract modal mask common style, and improve demo
* update snapshots
* fix less var conflict
* upgrade rc-image, adjust maxSize with dark.min.css, improve placeholder demo desc
51 lines
1000 B
Markdown
51 lines
1000 B
Markdown
---
|
|
order: 3
|
|
title:
|
|
zh-CN: 渐进加载
|
|
en-US: Progressive Loading
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
大图使用 placeholder 渐进加载。
|
|
|
|
## en-US
|
|
|
|
Progressive when large image loading.
|
|
|
|
```jsx
|
|
import React from 'react';
|
|
import { Image, Button } from 'antd';
|
|
|
|
function ImageDemo() {
|
|
const [random, setRandom] = React.useState();
|
|
return (
|
|
<>
|
|
<Image
|
|
width={200}
|
|
src={`https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png?${random}`}
|
|
placeholder={
|
|
<Image
|
|
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"
|
|
width={200}
|
|
/>
|
|
}
|
|
/>
|
|
<Button
|
|
type="primary"
|
|
style={{
|
|
marginLeft: 10,
|
|
}}
|
|
onClick={() => {
|
|
setRandom(Date.now());
|
|
}}
|
|
>
|
|
Reload
|
|
</Button>
|
|
</>
|
|
);
|
|
}
|
|
|
|
ReactDOM.render(<ImageDemo />, mountNode);
|
|
```
|