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

68 lines
1.5 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.
2019-05-07 14:57:32 +08:00
```jsx
import { Skeleton, Switch, Card, Icon, Avatar } from 'antd';
const { Meta } = Card;
class App extends React.Component {
state = {
loading: true,
2019-05-07 14:57:32 +08:00
};
2019-05-07 14:57:32 +08:00
onChange = checked => {
this.setState({ loading: !checked });
2019-05-07 14:57:32 +08:00
};
render() {
const { loading } = this.state;
return (
<div>
<Switch checked={!loading} onChange={this.onChange} />
2018-09-02 16:09:47 +08:00
<Card style={{ width: 300, marginTop: 16 }} loading={loading}>
<Meta
2019-05-07 14:57:32 +08:00
avatar={
<Avatar src="https://zos.alipayobjects.com/rmsportal/ODTLcjxAfvqbxHnVXCYX.png" />
}
2018-09-02 16:09:47 +08:00
title="Card title"
description="This is the description"
/>
</Card>
<Card
style={{ width: 300, marginTop: 16 }}
actions={[<Icon type="setting" />, <Icon type="edit" />, <Icon type="ellipsis" />]}
>
<Skeleton loading={loading} avatar active>
<Meta
2019-05-07 14:57:32 +08:00
avatar={
<Avatar src="https://zos.alipayobjects.com/rmsportal/ODTLcjxAfvqbxHnVXCYX.png" />
}
title="Card title"
description="This is the description"
/>
</Skeleton>
</Card>
</div>
);
}
}
2016-02-22 16:25:13 +08:00
ReactDOM.render(<App />, mountNode);
2019-05-07 14:57:32 +08:00
```