Element 如何使用icon图标(第三方)

idea (26) 2023-03-24 22:20

大家好,我是编程小6,很高兴遇见你,有问题可以及时留言哦。

element-ui自带的图标库还是不够全,还是需要需要引入第三方icon,自己在用的时候一直有些问题,参考了些教程,详细地记录补充下

对于我们来说,首选的当然是阿里icon库

一. 教程

1. 打开 ⇲ 阿里icon

注册 > 登录 > 图标管理 > 我的项目项

Element 如何使用icon图标(第三方)_https://bianchenghao6.com/blog_idea_第1张

图标管理 > 我的项目,点进去

2. 新建项目项

Element 如何使用icon图标(第三方)_https://bianchenghao6.com/blog_idea_第2张

项目名称随便写。前缀注意,不要跟 element-ui 自带的 icon (前缀为:el-icon)重名了。

设置完,点新建

Element 如何使用icon图标(第三方)_https://bianchenghao6.com/blog_idea_第3张

注意前缀。设置完,点新建

3. 添加 icon

现在我们返回阿里icon首页,点进去你想要的icon库,因为没有批量导入购物车,所以一般情况下需要一个一个去点,太浪费时间,那么请在控制台输入以下代码,批量导入导\

var icons = document.querySelectorAll('.icon-gouwuche1');

var auto_click = function(i) {
    if (i < icons.length) {
        setTimeout(function() {
            icons.item(i).click();
            auto_click(i + 1);
        }, 600);
    }
};

auto_click(0);

Element 如何使用icon图标(第三方)_https://bianchenghao6.com/blog_idea_第4张

然后点击回车,他会把这套图库所有icon加入购物车

点页面上的购物车

Element 如何使用icon图标(第三方)_https://bianchenghao6.com/blog_idea_第5张

把图标都添加到刚才创建的项目里

Element 如何使用icon图标(第三方)_https://bianchenghao6.com/blog_idea_第6张

4. 下载至本地

设置fontClass,然后下载到本地

Element 如何使用icon图标(第三方)_https://bianchenghao6.com/blog_idea_第7张

下载到本地,解压

解压后你会得到这些文件,打开图中圈中的文件

二. 使用

1. iconfont.css 新增样式代码

将以下代码加进去,注意:el-icon-third是你之前设置的icon前缀,第二个el-icon-third前边有空格的\

[class^="el-icon-third"], [class*=" el-icon-third"]/*这里有空格*/

{
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

Element 如何使用icon图标(第三方)_https://bianchenghao6.com/blog_idea_第8张

绿框的数据保持一致就好

2. copy下载好的文件

上边设置好以后,打开vue项目,我是在src-assets下创建了icon文件夹,将所有的文件复制了过来

在main.js里边把css引进来

Element 如何使用icon图标(第三方)_https://bianchenghao6.com/blog_idea_第9张

记得引进来

然后重新 npm run dev 一下

3. 具体使用

打开在阿里icon的项目,复制你想要的图标代码

Element 如何使用icon图标(第三方)_https://bianchenghao6.com/blog_idea_第10张

图标代码:el-icon-ump-qianniudaidise

使用,两种引用方式,跟element自带的使用方法一样

Element 如何使用icon图标(第三方)_https://bianchenghao6.com/blog_idea_第11张

4. 最后效果:

Element 如何使用icon图标(第三方)_https://bianchenghao6.com/blog_idea_第12张

不管你懂了没有,反正我是懂了,hahaha

Element 如何使用icon图标(第三方)_https://bianchenghao6.com/blog_idea_第13张

发表回复