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

34 lines
750 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
2016-12-20 11:06:40 +08:00
order: 2
title:
zh-CN: 封顶数字
2016-12-20 11:06:40 +08:00
en-US: Overflow Count
2016-03-31 09:40:55 +08:00
---
2015-12-22 14:34:31 +08:00
## zh-CN
2016-12-20 11:06:40 +08:00
超过 `overflowCount` 的会显示为 `${overflowCount}+`,默认的 `overflowCount``99`
2015-12-22 14:34:31 +08:00
## en-US
2016-12-20 11:06:40 +08:00
`${overflowCount}+` is displayed when count is larger than `overflowCount`. The default value of `overflowCount` is `99`.
2017-01-19 15:19:03 +08:00
````__react
2015-12-22 14:34:31 +08:00
import { Badge } from 'antd';
2015-12-22 14:49:46 +08:00
ReactDOM.render(<div>
2016-12-20 11:06:40 +08:00
<Badge count={99}>
<a href="#" className="head-example" />
</Badge>
<Badge count={100}>
<a href="#" className="head-example" />
</Badge>
2015-12-22 14:49:46 +08:00
<Badge count={99} overflowCount={10}>
2016-08-23 21:00:35 +08:00
<a href="#" className="head-example" />
2015-12-22 14:49:46 +08:00
</Badge>
<Badge count={1000} overflowCount={999}>
2016-08-23 21:00:35 +08:00
<a href="#" className="head-example" />
2015-12-22 14:49:46 +08:00
</Badge>
</div>, mountNode);
2015-12-22 14:34:31 +08:00
````