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

72 lines
1.3 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.
2017-02-13 10:55:53 +08:00
````jsx
2016-12-20 11:06:40 +08:00
import { Badge, Button, Icon, Switch } from 'antd';
2015-11-18 17:05:56 +08:00
const ButtonGroup = Button.Group;
class Demo extends React.Component {
state = {
count: 5,
show: true,
}
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 });
}
onChange = (show) => {
2016-12-20 11:06:40 +08:00
this.setState({ show });
}
2015-11-18 17:05:56 +08:00
render() {
return (
<div>
2016-12-20 11:06:40 +08:00
<div>
<Badge count={this.state.count}>
<a href="#" className="head-example" />
</Badge>
<ButtonGroup>
2017-02-04 22:35:33 +08:00
<Button onClick={this.decline}>
<Icon type="minus" />
</Button>
2017-02-04 22:35:33 +08:00
<Button onClick={this.increase}>
<Icon type="plus" />
</Button>
</ButtonGroup>
2016-12-20 11:06:40 +08:00
</div>
<div style={{ marginTop: 10 }}>
<Badge dot={this.state.show}>
<a href="#" className="head-example" />
</Badge>
<Switch onChange={this.onChange} />
</div>
2015-11-18 17:05:56 +08:00
</div>
);
}
}
2015-11-18 17:05:56 +08:00
ReactDOM.render(<Demo />, mountNode);
2015-11-18 17:05:56 +08:00
````