Blogger Information
Blog 29
fans 0
comment 0
visits 11073
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
字体图标的使用
尹辉
Original
422 people have browsed it

字体图标

以阿里图标(需要注册,免费试用)为例,网址为:https://www.iconfont.cn/。

  1. 进入阿里图标网站,登录后点击顶部导航菜单中的“素材库” => “图标库”。

  2. 然后在顶部搜索框中输入想要的图标,例如:购物车,选择一个图标,将光标移动到图标上,在弹出的对话框中选择“加入购物车”。

  3. 点击顶部菜单栏中的购物车按钮,进入购物车页面。

  4. 首次进入需要先添加项目,点击右侧菜单中的“添加项目”,创建一个新项目。

  5. 如果以前添加过项目,进入购物车后会提示“添加至项目”,选择已有项目或创建一个新项目。

  6. 进入项目后可以看到刚添加的图标,选择上面的图标格式,一般用“font class”。

  7. 将光标移动到图标上,在弹出对话框中选择复制代码,可以得到这个图标的类名(class),例如:icon-gouwuchekong。

  8. 点击上面的”查看在线链接“,将在线链接复制下来。例如://at.alicdn.com/t/c/font_3961095_cpx4bys0pgo.css

  9. 然后进入编辑器,在文档的<head>中添加<link>语句引入在线图标库:

    1. <head>
    2. ......
    3. <link rel="stylesheet" href="//at.alicdn.com/t/c/font_3961095_cpx4bys0pgo.css">
    4. </head>
  10. 也可以在外部样式文件中引入在线图标库:

    1. /* icon.css */
    2. @import url(//at.alicdn.com/t/c/font_3961095_cpx4bys0pgo.css)
    1. <head>
    2. ......
    3. <link rel="stylesheet" href="icon.css">
    4. </head>
  11. 在文档的<body>中添加一个<span>元素,为其 class 属性添加两个属性值: ”iconfont” 和 “icon-gouwuchekong“:

    1. <body>
    2. ......
    3. <span class="iconfont icon-gouwuchekong"></span>
    4. </body>
  12. 字体图标本质是一种字体,可以试用字体样式来设置其大小、颜色等样式。

    1. .icon-gouwuchekong{
    2. font-size:4rem;
    3. color:coral;
    4. }
  13. 完成后的页面显示效果:

Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post