ant-design/components/card/demo/loading.md

64 lines
1.4 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
2016-04-10 15:38:52 +08:00
order: 5
title:
zh-CN: 预加载的卡片
en-US: Loading card
2016-03-31 09:40:55 +08:00
---
2016-02-22 16:25:13 +08:00
## zh-CN
2016-02-22 16:25:13 +08:00
数据读入前会有文本块样式。
## en-US
2016-12-06 16:46:12 +08:00
Shows a loading indicator while the contents of the card is being fetched.
```tsx
import { EditOutlined, EllipsisOutlined, SettingOutlined } from '@ant-design/icons';
2022-05-23 14:37:16 +08:00
import { Avatar, Card, Skeleton, Switch } from 'antd';
import React, { useState } from 'react';
const { Meta } = Card;
const App: React.FC = () => {
const [loading, setLoading] = useState(true);
const onChange = (checked: boolean) => {
setLoading(!checked);
2019-05-07 14:57:32 +08:00
};
return (
<>
<Switch checked={!loading} onChange={onChange} />
<Card style={{ width: 300, marginTop: 16 }} loading={loading}>
<Meta
avatar={<Avatar src="https://joeschmoe.io/api/v1/random" />}
title="Card title"
description="This is the description"
/>
</Card>
<Card
style={{ width: 300, marginTop: 16 }}
actions={[
<SettingOutlined key="setting" />,
<EditOutlined key="edit" />,
<EllipsisOutlined key="ellipsis" />,
]}
>
<Skeleton loading={loading} avatar active>
2018-09-02 16:09:47 +08:00
<Meta
avatar={<Avatar src="https://joeschmoe.io/api/v1/random" />}
2018-09-02 16:09:47 +08:00
title="Card title"
description="This is the description"
/>
</Skeleton>
</Card>
</>
);
};
export default App;
2019-05-07 14:57:32 +08:00
```