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

66 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.
2017-02-13 10:55:53 +08:00
````jsx
2018-11-28 15:00:03 +08:00
import {
Skeleton, Switch, Card, Icon, Avatar,
} from 'antd';
const { Meta } = Card;
class App extends React.Component {
state = {
loading: true,
}
onChange = (checked) => {
this.setState({ loading: !checked });
}
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
avatar={<Avatar src="https://zos.alipayobjects.com/rmsportal/ODTLcjxAfvqbxHnVXCYX.png" />}
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
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);
2016-02-22 16:25:13 +08:00
````