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

25 lines
379 B
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
Shows a loading indicator while the contents of the card are being fetched.
2016-02-22 16:25:13 +08:00
````jsx
import { Card } from 'antd';
2016-04-10 15:38:52 +08:00
ReactDOM.render(
<Card loading title="Card title" style={{ width: '34%' }}>
2016-04-10 15:38:52 +08:00
Whatever content
</Card>
, mountNode);
2016-02-22 16:25:13 +08:00
````