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

43 lines
748 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 0
title:
zh-CN: 基本
en-US: Basic
2016-03-31 09:40:55 +08:00
---
2015-09-01 13:59:07 +08:00
## zh-CN
简单的徽章展示,当 `count``0` 时,默认不显示,但是可以使用 `showZero` 修改为显示。
2015-09-01 13:59:07 +08:00
## en-US
Simplest Usage. Badge will be hidden when `count` is `0`, but we can use `showZero` to show it.
2017-02-13 10:55:53 +08:00
````jsx
import { Badge } from 'antd';
2015-09-01 13:59:07 +08:00
2015-10-20 16:47:55 +08:00
ReactDOM.render(
<div>
<Badge count={5}>
<a href="#" className="head-example" />
</Badge>
<Badge count={0} showZero>
<a href="#" className="head-example" />
</Badge>
</div>
, mountNode);
2015-09-01 13:59:07 +08:00
````
2016-12-20 11:06:40 +08:00
<style>
2016-10-12 19:42:10 +08:00
.ant-badge:not(.ant-badge-status) {
2015-09-01 13:59:07 +08:00
margin-right: 16px;
}
.head-example {
width: 42px;
height: 42px;
border-radius: 6px;
background: #eee;
display: inline-block;
}
2016-12-20 11:06:40 +08:00
</style>