2016-03-31 09:40:55 +08:00
|
|
|
---
|
|
|
|
order: 0
|
2016-07-11 11:45:42 +08:00
|
|
|
title:
|
|
|
|
zh-CN: 基本
|
|
|
|
en-US: Basic
|
2016-03-31 09:40:55 +08:00
|
|
|
---
|
2015-09-01 13:59:07 +08:00
|
|
|
|
2016-07-11 11:45:42 +08:00
|
|
|
## zh-CN
|
|
|
|
|
2017-03-01 11:16:58 +08:00
|
|
|
简单的徽章展示,当 `count` 为 `0` 时,默认不显示,但是可以使用 `showZero` 修改为显示。
|
2015-09-01 13:59:07 +08:00
|
|
|
|
2016-07-11 11:45:42 +08:00
|
|
|
## en-US
|
|
|
|
|
2017-03-01 11:16:58 +08:00
|
|
|
Simplest Usage. Badge will be hidden when `count` is `0`, but we can use `showZero` to show it.
|
2016-07-11 11:45:42 +08:00
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
```jsx
|
2019-08-13 14:07:17 +08:00
|
|
|
import { Badge } from 'antd';
|
2019-11-28 12:34:33 +08:00
|
|
|
import { ClockCircleOutlined } from '@ant-design/icons';
|
2015-09-01 13:59:07 +08:00
|
|
|
|
2015-10-20 16:47:55 +08:00
|
|
|
ReactDOM.render(
|
2017-03-01 11:16:58 +08:00
|
|
|
<div>
|
|
|
|
<Badge count={5}>
|
|
|
|
<a href="#" className="head-example" />
|
|
|
|
</Badge>
|
|
|
|
<Badge count={0} showZero>
|
|
|
|
<a href="#" className="head-example" />
|
|
|
|
</Badge>
|
2019-11-28 12:34:33 +08:00
|
|
|
<Badge count={<ClockCircleOutlined style={{ color: '#f5222d' }} />}>
|
2018-10-16 15:07:24 +08:00
|
|
|
<a href="#" className="head-example" />
|
|
|
|
</Badge>
|
2018-06-27 15:55:04 +08:00
|
|
|
</div>,
|
2019-05-07 14:57:32 +08:00
|
|
|
mountNode,
|
2018-11-28 15:00:03 +08:00
|
|
|
);
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|
2015-09-01 13:59:07 +08:00
|
|
|
|
2016-12-20 11:06:40 +08:00
|
|
|
<style>
|
2018-08-20 15:07:05 +08:00
|
|
|
.ant-badge:not(.ant-badge-not-a-wrapper) {
|
2017-10-18 17:19:42 +08:00
|
|
|
margin-right: 20px;
|
2015-09-01 13:59:07 +08:00
|
|
|
}
|
2020-01-02 19:10:16 +08:00
|
|
|
.ant-badge.ant-badge-rtl:not(.ant-badge-not-a-wrapper) {
|
|
|
|
margin-right: 0;
|
|
|
|
margin-left: 20px;
|
|
|
|
}
|
2015-09-01 13:59:07 +08:00
|
|
|
.head-example {
|
|
|
|
width: 42px;
|
|
|
|
height: 42px;
|
2019-12-25 11:02:45 +08:00
|
|
|
border-radius: 2px;
|
2015-09-01 13:59:07 +08:00
|
|
|
background: #eee;
|
|
|
|
display: inline-block;
|
2018-09-11 19:04:35 +08:00
|
|
|
vertical-align: middle;
|
2015-09-01 13:59:07 +08:00
|
|
|
}
|
2019-12-25 11:02:45 +08:00
|
|
|
[data-theme="dark"] .head-example {
|
|
|
|
background: rgba(255,255,255,.12);
|
|
|
|
}
|
2016-12-20 11:06:40 +08:00
|
|
|
</style>
|