字体图标基本使用方法

字体图标的使用

字体图标的优点:

  • 灵活性:灵活地修改样式,例如:尺寸、颜色等
  • 轻量级:体积小、渲染快、降低服务器请求次数
  • 兼容性:几乎兼容所有主流浏览器

图标库

Iconfont:www.iconfont.cn/

使用方法

Unicode法

  1. 先引入iconfont.css文件
  2. 复制粘贴图标对应的Unicode编码
  3. 设置文字字体
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <link rel="stylesheet" href="./iconfont/iconfont.css">
    <style>
        span {
            font-family: "iconfont";
            font-size: 50px;
            color: brown;
        }
        
        .s2 {
            color: green;
        }
    </style>
</head>

<body>
    <span>&#xe665;</span>
    <span class="s2">&#xe666;</span>
</body>

</html>
复制代码

类名引用

  1. 先引入iconfont.css文件

  2. 调用图标对应的类名,必须调用2个类名

    iconfont类:基本样式,包含字体的使用等

    icon-xxx:图标对应的类名

  3. 设置文字字体

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <link rel="stylesheet" href="./iconfont/iconfont.css">
    <style>

        .s2 {
            font-size: 50px;
            color: red;
        }
    </style>
</head>

<body>
    <span class="iconfont
    icon-arrow-up-circle"></span>
    <span class="iconfont icon-arrow-right-circle s2"></span>
</body>

</html>
复制代码

现在我们来做个购物车案例

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <link rel="stylesheet" href="./iconfont/iconfont.css">
    <style>
        .s2 {
            font-size: 50px;
            color: red;
        }
    </style>
</head>

<body>
    <span class="iconfont
    icon-arrow-up-circle"></span>
    <span class="iconfont icon-arrow-right-circle s2"></span>
</body>

</html>
复制代码
© 版权声明
THE END
喜欢就支持一下吧
点赞0 分享