2016-03-31 09:40:55 +08:00
|
|
|
---
|
|
|
|
order: 4
|
2016-07-11 11:45:42 +08:00
|
|
|
title:
|
|
|
|
zh-CN: 动态
|
|
|
|
en-US: Dynamic
|
2016-03-31 09:40:55 +08:00
|
|
|
---
|
2015-11-18 17:05:56 +08:00
|
|
|
|
2016-07-11 11:45:42 +08:00
|
|
|
## zh-CN
|
|
|
|
|
2015-11-18 17:05:56 +08:00
|
|
|
展示动态变化的效果。
|
|
|
|
|
2016-07-11 11:45:42 +08:00
|
|
|
## en-US
|
|
|
|
|
|
|
|
The count will be animated as it changes.
|
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
```jsx
|
2021-08-02 12:22:30 +08:00
|
|
|
import { Badge, Button, Switch, Divider, Avatar } from 'antd';
|
2021-01-29 14:27:36 +08:00
|
|
|
import { MinusOutlined, PlusOutlined, QuestionOutlined } from '@ant-design/icons';
|
2018-06-27 15:55:04 +08:00
|
|
|
|
2015-11-18 17:05:56 +08:00
|
|
|
const ButtonGroup = Button.Group;
|
|
|
|
|
2017-02-19 20:27:06 +08:00
|
|
|
class Demo extends React.Component {
|
|
|
|
state = {
|
|
|
|
count: 5,
|
|
|
|
show: true,
|
2019-05-07 14:57:32 +08:00
|
|
|
};
|
2017-02-19 20:27:06 +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 });
|
2019-05-07 14:57:32 +08:00
|
|
|
};
|
2017-02-19 20:27:06 +08:00
|
|
|
|
|
|
|
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 });
|
2019-05-07 14:57:32 +08:00
|
|
|
};
|
2017-02-19 20:27:06 +08:00
|
|
|
|
2021-01-29 14:27:36 +08:00
|
|
|
random = () => {
|
|
|
|
const count = Math.floor(Math.random() * 100);
|
|
|
|
this.setState({ count });
|
|
|
|
};
|
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
onChange = show => {
|
2016-12-20 11:06:40 +08:00
|
|
|
this.setState({ show });
|
2019-05-07 14:57:32 +08:00
|
|
|
};
|
2017-02-19 20:27:06 +08:00
|
|
|
|
2015-11-18 17:05:56 +08:00
|
|
|
render() {
|
2016-01-07 16:29:12 +08:00
|
|
|
return (
|
2021-08-02 12:22:30 +08:00
|
|
|
<>
|
|
|
|
<Badge count={this.state.count}>
|
|
|
|
<Avatar shape="square" size="large" />
|
|
|
|
</Badge>
|
|
|
|
<ButtonGroup>
|
|
|
|
<Button onClick={this.decline}>
|
|
|
|
<MinusOutlined />
|
|
|
|
</Button>
|
|
|
|
<Button onClick={this.increase}>
|
|
|
|
<PlusOutlined />
|
|
|
|
</Button>
|
|
|
|
<Button onClick={this.random}>
|
|
|
|
<QuestionOutlined />
|
|
|
|
</Button>
|
|
|
|
</ButtonGroup>
|
|
|
|
<Divider />
|
|
|
|
<Badge dot={this.state.show}>
|
|
|
|
<Avatar shape="square" size="large" />
|
|
|
|
</Badge>
|
|
|
|
<Switch onChange={this.onChange} checked={this.state.show} />
|
|
|
|
</>
|
2016-01-07 16:29:12 +08:00
|
|
|
);
|
2017-02-19 20:27:06 +08:00
|
|
|
}
|
|
|
|
}
|
2015-11-18 17:05:56 +08:00
|
|
|
|
2022-04-03 23:27:45 +08:00
|
|
|
export default () => <Demo />;
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|