当前位置:   article > 正文

在vscode中使用iconfont阿里字体图标_iconfont怎么在vs code中使用

iconfont怎么在vs code中使用

 1.登录阿里巴巴矢量图标库

iconfont-阿里巴巴矢量图标库iconfont-国内功能很强大且图标内容很丰富的矢量图标库,提供矢量图标下载、在线存储、格式转换等功能。阿里巴巴体验团队倾力打造,设计和前端开发的便捷工具https://www.iconfont.cn/

首页:

 2.从中选择你喜欢的图标库

 3. 点击加入购物车,在购物车中可以查看自己想要的图标

 4.下一步点击添加至项目,给你想要的图标加入项目并取一个喜欢的项目名字

 5.直接点击下载至本地,下载完成后解压缩(最好将该文件夹重命名一下,写代码的时候比较好用,我这里重命名为word)并将文件夹放入vscode中你要使用的文件夹下。

可以看到iconfont.css,这是我们需要引入的css

并且右键demo_index.html在浏览器中打开

特别提醒:在web端使用字体图标部分图标可能出现错误,一般使用Fontclass方式是最简单的,也是官方推荐的,图一三种引入方式全部支持,图二只支持Symbol方式,其他引用方式会出现图标变黑,根据实际需求变换引入方式。

Symbol方式没错,彩色图标

 Font class出错,图标变成黑色

  1. 使用link标签引入
  2. <link rel="stylesheet" href="word/iconfont.css">

 6.(1)建议使用Font class方式引入方便,这里第一种先展示Font class方法。

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <title>Document</title>
  8. <link rel="stylesheet" href="download/test_font/iconfont.css" />
  9. <style>
  10. span.icon-buganxingqu {
  11. font-size: 100px;
  12. color: red;
  13. }
  14. span.icon-dingwei {
  15. font-size: 100px;
  16. color: blue;
  17. }
  18. span.icon-caidan {
  19. font-size: 100px;
  20. color: greenyellow;
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. <span class="iconfont icon-buganxingqu">爱心图标</span><br />
  26. <span class="iconfont icon-dingwei">定位图标</span><br />
  27. <span class="iconfont icon-caidan">egg</span><br />
  28. <span class="iconfont icon-ditu"></span><br />
  29. <span class="iconfont icon-bofangjilu"></span>
  30. </body>
  31. </html>

此时图标就相当于文本,可以设置大小font-size,还可以设置颜色

 可以看到和文字一样

6.(2)使用Symbol引入比较麻烦不建议使用

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <title>Document</title>
  8. <link rel="stylesheet" href="test/iconfont.css" />
  9. <style>
  10. .icon {
  11. width: 100px;
  12. height: 100px;
  13. }
  14. </style>
  15. </head>
  16. <body>
  17. <script src="test/iconfont.js"></script>
  18. <svg class="icon" aria-hidden="true">
  19. <use xlink:href="#icon-liuyanban"></use>
  20. </svg>
  21. <svg class="icon" aria-hidden="true">
  22. <use xlink:href="#icon-zijin"></use>
  23. </svg>
  24. <svg class="icon" aria-hidden="true">
  25. <use xlink:href="#icon-shangcheng"></use>
  26. </svg>
  27. <svg class="icon" aria-hidden="true">
  28. <use xlink:href="#icon-anquan"></use>
  29. </svg>
  30. </body>
  31. </html>

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/113947
推荐阅读
相关标签
  

闽ICP备14008679号