ant-design/components/icon/index.zh-CN.md

140 lines
2.9 KiB
Markdown
Raw Normal View History

2016-03-31 14:17:09 +08:00
---
category: Components
2016-09-21 11:28:38 +08:00
subtitle: 图标
type: General
2016-09-21 11:28:38 +08:00
title: Icon
2016-07-26 19:45:55 +08:00
toc: false
2016-03-31 14:17:09 +08:00
---
2015-05-27 15:43:29 +08:00
语义化的矢量图形。
2015-06-17 19:48:17 +08:00
2015-06-17 18:20:39 +08:00
## 图标的命名规范
2015-12-07 16:32:44 +08:00
我们为每个图标赋予了语义化的命名,命名规则如下:
2015-06-17 18:20:39 +08:00
2015-07-10 17:17:58 +08:00
- 实心和描线图标保持同名,用 `-o` 来区分,比如 `question-circle`(实心) 和 `question-circle-o`(描线)
2015-06-17 18:20:39 +08:00
2015-11-11 17:44:16 +08:00
- 命名顺序:`[icon名]-[形状可选]-[描线与否]-[方向可选]`。
2015-06-17 18:20:39 +08:00
2015-12-07 16:32:44 +08:00
## 如何使用
2015-12-07 16:32:44 +08:00
使用 `<Icon />` 标签声明组件,指定图标对应的 type 属性,示例代码如下:
```html
2015-12-07 16:32:44 +08:00
<Icon type="link" />
```
2015-06-17 18:20:39 +08:00
2015-12-07 16:32:44 +08:00
最终会渲染为:
2015-06-07 14:01:59 +08:00
```html
2015-12-07 16:32:44 +08:00
<i class="anticon anticon-${type}"></i>
2015-06-07 14:01:59 +08:00
```
2016-03-14 18:39:32 +08:00
## 本地部署
图标组件使用 [iconfont.cn](http://iconfont.cn),默认公网可访问。如需本地部署,可参考 [示例](https://github.com/ant-design/antd-init/tree/master/examples/local-iconfont)。
2015-05-27 15:43:29 +08:00
## 图标列表
2015-12-07 16:32:44 +08:00
> 点击图标复制代码。
2016-09-10 14:00:57 +08:00
### 方向性图标
2015-06-10 18:13:49 +08:00
2016-03-07 11:58:14 +08:00
```__react
import IconSet from 'site/theme/template/IconSet';
ReactDOM.render(<IconSet className="icons" catigory="direction" />, mountNode);
2016-03-07 11:58:14 +08:00
```
2016-09-10 14:00:57 +08:00
### 提示建议性图标
2016-03-07 11:58:14 +08:00
```__react
2017-01-19 15:19:03 +08:00
import IconSet from 'site/theme/template/IconSet';
ReactDOM.render(<IconSet className="icons" catigory="suggestion" />, mountNode);
2016-03-07 11:58:14 +08:00
```
2016-09-10 14:00:57 +08:00
### 网站通用图标
2016-03-07 11:58:14 +08:00
```__react
2017-01-19 15:19:03 +08:00
import IconSet from 'site/theme/template/IconSet';
ReactDOM.render(<IconSet className="icons" catigory="other" />, mountNode);
2016-03-07 11:58:14 +08:00
```
2017-03-03 14:42:00 +08:00
### 品牌和标识
```__react
import IconSet from 'site/theme/template/IconSet';
ReactDOM.render(<IconSet className="icons" catigory="logo" />, mountNode);
```
## Props
| 参数 | 说明 | 类型 | 默认值 |
|----------|------------------|----------|--------|
2016-10-30 12:43:59 +08:00
| type | 图标类型 | string | - |
| spin | 是否有旋转动画 | boolean | false |
<style>
2016-03-07 11:58:14 +08:00
.markdown .icons {
width: 100%;
}
2015-06-07 17:18:14 +08:00
ul.anticons-list {
2016-09-10 14:00:57 +08:00
margin: 40px 0;
2015-06-07 17:18:14 +08:00
list-style: none;
2015-09-14 15:19:44 +08:00
overflow: hidden;
2015-06-07 17:18:14 +08:00
}
2015-06-08 12:39:35 +08:00
ul.anticons-list li {
2015-06-07 17:18:14 +08:00
float: left;
2016-09-10 14:00:57 +08:00
width: 16.66%;
2015-06-07 17:18:14 +08:00
text-align: center;
list-style: none;
cursor: pointer;
2016-05-11 00:24:00 +08:00
height: 100px;
2016-09-10 14:00:57 +08:00
color: #555;
2015-06-08 12:41:37 +08:00
transition: all 0.2s ease;
2015-06-08 23:41:11 +08:00
position: relative;
2016-09-10 14:00:57 +08:00
margin: 3px 0;
border-radius: 4px;
background-color: #fff;
overflow: hidden;
padding: 10px 0 0 0;
2015-06-08 23:41:11 +08:00
}
2015-11-04 16:55:02 +08:00
ul.anticons-list li:hover {
2016-09-10 14:00:57 +08:00
background-color: #eaf8fe;
2015-06-07 17:18:14 +08:00
}
2015-11-04 16:55:02 +08:00
ul.anticons-list li.copied:hover {
2015-06-09 12:11:43 +08:00
color: rgba(255,255,255,0.2);
}
ul.anticons-list li:after {
position: absolute;
2016-09-10 14:00:57 +08:00
top: 0;
2015-06-09 12:11:43 +08:00
left: 0;
height: 100%;
width: 100%;
content: "Copied!";
text-align: center;
line-height: 110px;
2016-11-13 18:57:45 +08:00
color: #108ee9;
2015-06-09 12:11:43 +08:00
transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
opacity: 0;
}
ul.anticons-list li.copied:after {
opacity: 1;
2016-09-10 14:00:57 +08:00
top: -10px;
2015-06-08 23:41:11 +08:00
}
2015-06-07 17:18:14 +08:00
.anticon {
font-size: 24px;
2015-06-15 20:29:51 +08:00
margin: 12px 0 16px;
2016-09-10 14:00:57 +08:00
transition: all .3s;
}
ul.anticons-list li:hover .anticon {
transform: scale(1.4);
2015-06-07 17:18:14 +08:00
}
.anticon-class {
display: block;
text-align: center;
2015-06-09 12:11:43 +08:00
transform: scale(0.83);
2016-11-18 15:38:36 +08:00
font-family: "Lucida Console", Consolas;
2016-05-11 00:24:00 +08:00
white-space: nowrap;
2015-06-07 17:18:14 +08:00
}
2016-04-08 15:29:04 +08:00
</style>