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

74 lines
1.6 KiB
Markdown
Raw Normal View History

2015-11-18 17:05:56 +08:00
# 动态
- order: 4
展示动态变化的效果。
---
````jsx
import { Badge, Button, Icon } from 'antd';
const ButtonGroup = Button.Group;
const Test = React.createClass({
getInitialState() {
return {
2015-11-23 15:08:19 +08:00
count: 227,
2015-11-18 23:42:01 +08:00
show: true,
2015-11-18 17:05:56 +08:00
};
},
increase() {
2015-11-23 15:08:19 +08:00
const count = this.state.count + 13;
2015-11-18 17:05:56 +08:00
this.setState({ count });
},
decline() {
2015-11-23 15:08:19 +08:00
let count = this.state.count - 71;
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-20 21:44:05 +08:00
onNumberClick() {
2015-11-18 23:42:01 +08:00
const count = this.state.count;
this.setState({
2015-11-19 00:13:16 +08:00
count: count ? 0 : 5
});
2015-11-18 23:42:01 +08:00
},
2015-11-18 17:05:56 +08:00
render() {
return <div>
<Badge count={this.state.count}>
<a href="#" className="head-example"></a>
</Badge>
2015-11-18 23:42:01 +08:00
<Badge dot={this.state.show}>
2015-11-20 21:44:05 +08:00
<a href="#" className="head-example"></a>
2015-11-18 23:42:01 +08:00
</Badge>
2015-11-18 17:05:56 +08:00
<div style={{ marginTop: 10 }}>
2015-11-20 21:44:05 +08:00
<Button type="ghost" onClick={this.onNumberClick} style={{marginRight: 6}}>
切换数字显隐
</Button>
<Button type="ghost" onClick={this.onClick} style={{marginRight: 6}}>
切换红点显隐
</Button>
2015-11-18 17:05:56 +08:00
<ButtonGroup>
<Button type="ghost" onClick={this.decline}>
<Icon type="minus" />
</Button>
<Button type="ghost" onClick={this.increase}>
<Icon type="plus" />
</Button>
</ButtonGroup>
</div>
</div>;
}
});
ReactDOM.render(
<Test />
, document.getElementById('components-badge-demo-change'));
````