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

57 lines
1.2 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 4
title: 加载中
---
2015-06-17 21:29:58 +08:00
2015-12-28 13:57:02 +08:00
添加 `loading` 属性即可让按钮处于加载状态,最后两个按钮演示点击后进入加载状态。
2015-07-29 22:23:55 +08:00
````jsx
2015-12-28 13:49:58 +08:00
import { Button, Icon } from 'antd';
2015-09-27 16:30:35 +08:00
const App = React.createClass({
2015-07-29 22:23:55 +08:00
getInitialState() {
return {
2015-12-28 13:49:58 +08:00
loading: false,
iconLoading: false,
2015-07-29 22:23:55 +08:00
};
},
enterLoading() {
2015-12-28 13:49:58 +08:00
this.setState({ loading: true });
},
enterIconLoading() {
this.setState({ iconLoading: true });
2015-07-29 22:23:55 +08:00
},
render() {
return (
<div>
<Button type="primary" size="large" loading>
加载中
</Button>
<Button type="primary" loading>
加载中
</Button>
<Button type="primary" size="small" loading>
加载中
</Button>
<br />
<Button type="primary" loading={this.state.loading} onClick={this.enterLoading}>
点击变加载
</Button>
<Button type="primary" loading={this.state.iconLoading} onClick={this.enterIconLoading}>
<Icon type="poweroff" />点击变加载
</Button>
</div>
);
2015-07-29 22:23:55 +08:00
}
});
ReactDOM.render(<App />, mountNode);
````
2015-07-29 22:23:55 +08:00
<style>
#components-button-demo-loading .ant-btn {
margin-right: 8px;
margin-bottom: 12px;
}
</style>