ant-design/components/badge/demo/change.md

72 lines
1.4 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 4
title:
zh-CN: 动态
en-US: Dynamic
2016-03-31 09:40:55 +08:00
---
2015-11-18 17:05:56 +08:00
## zh-CN
2015-11-18 17:05:56 +08:00
展示动态变化的效果。
## en-US
The count will be animated as it changes.
2015-11-18 17:05:56 +08:00
````jsx
import { Badge, Button, Icon } from 'antd';
const ButtonGroup = Button.Group;
const Test = React.createClass({
getInitialState() {
return {
2015-11-23 15:21:52 +08:00
count: 5,
2015-11-18 23:42:01 +08:00
show: true,
2015-11-18 17:05:56 +08:00
};
},
increase() {
2015-11-23 15:21:52 +08:00
const count = this.state.count + 1;
2015-11-18 17:05:56 +08:00
this.setState({ count });
},
decline() {
2015-11-23 15:21:52 +08:00
let count = this.state.count - 1;
2015-11-18 17:05:56 +08:00
if (count < 0) {
count = 0;
}
this.setState({ count });
},
2015-11-18 23:42:01 +08:00
onClick() {
2015-11-19 00:13:16 +08:00
this.setState({
show: !this.state.show,
2015-11-19 00:13:16 +08:00
});
2015-11-18 23:42:01 +08:00
},
2015-11-18 17:05:56 +08:00
render() {
return (
<div>
<Badge count={this.state.count}>
2016-08-23 21:00:35 +08:00
<a href="#" className="head-example" />
</Badge>
<Badge dot={this.state.show}>
2016-08-23 21:00:35 +08:00
<a href="#" className="head-example" />
</Badge>
<div style={{ marginTop: 10 }}>
<ButtonGroup>
<Button type="ghost" onClick={this.decline}>
<Icon type="minus" />
</Button>
<Button type="ghost" onClick={this.increase}>
<Icon type="plus" />
</Button>
</ButtonGroup>
<Button type="ghost" onClick={this.onClick} style={{ marginLeft: 8 }}>
Switch state
</Button>
</div>
2015-11-18 17:05:56 +08:00
</div>
);
2016-05-11 09:32:33 +08:00
},
2015-11-18 17:05:56 +08:00
});
2016-11-03 16:59:42 +08:00
ReactDOM.render(<Test />, mountNode);
2015-11-18 17:05:56 +08:00
````