You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

72 lines
1.3 KiB

---
order: 4
title:
zh-CN: 动态
en-US: Dynamic
---
9 years ago
## zh-CN
9 years ago
展示动态变化的效果。
## en-US
The count will be animated as it changes.
````jsx
import { Badge, Button, Icon, Switch } from 'antd';
9 years ago
const ButtonGroup = Button.Group;
class Demo extends React.Component {
state = {
count: 5,
show: true,
}
increase = () => {
9 years ago
const count = this.state.count + 1;
9 years ago
this.setState({ count });
}
decline = () => {
9 years ago
let count = this.state.count - 1;
9 years ago
if (count < 0) {
count = 0;
}
this.setState({ count });
}
onChange = (show) => {
this.setState({ show });
}
9 years ago
render() {
return (
<div>
<div>
<Badge count={this.state.count}>
<a href="#" className="head-example" />
</Badge>
<ButtonGroup>
<Button onClick={this.decline}>
<Icon type="minus" />
</Button>
<Button onClick={this.increase}>
<Icon type="plus" />
</Button>
</ButtonGroup>
</div>
<div style={{ marginTop: 10 }}>
<Badge dot={this.state.show}>
<a href="#" className="head-example" />
</Badge>
<Switch onChange={this.onChange} />
</div>
9 years ago
</div>
);
}
}
9 years ago
ReactDOM.render(<Demo />, mountNode);
9 years ago
````