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.

66 lines
1.3 KiB

---
order: 4
title: 动态
---
9 years ago
展示动态变化的效果。
````jsx
import { Badge, Button, Icon } from 'antd';
const ButtonGroup = Button.Group;
const Test = React.createClass({
getInitialState() {
return {
9 years ago
count: 5,
9 years ago
show: true,
9 years ago
};
},
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 });
},
9 years ago
onClick() {
this.setState({
show: !this.state.show,
});
9 years ago
},
9 years ago
render() {
return (
<div>
<Badge count={this.state.count}>
<a href="#" className="head-example"></a>
</Badge>
<Badge dot={this.state.show}>
<a href="#" className="head-example"></a>
</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 }}>
切换红点显隐
</Button>
</div>
9 years ago
</div>
);
},
9 years ago
});
ReactDOM.render(
<Test />
, mountNode);
9 years ago
````