search
HomeWeb Front-endCSS TutorialCSS What is an icon font (IconFont)? What is the use?

This article mainly introduces a very easy-to-use icon method-icon font (IconFont). It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

What is an icon font? As the name suggests, it is a font, but this font does not display specific text, but various icons.

Various icons are often used on websites. In the past, icons used on web pages were mainly implemented using sprites (background position and background scaling). However, there are many inconveniences in using them this way. On the one hand, scaling is more difficult to handle. Trouble. On the one hand, if you want to change some icons, you need to find a designer to redesign them and then add them again. This process is very unfriendly.

Icon fonts can solve the above problems very conveniently, and they are also very simple to use. Because it is a font, it can be referenced as a font. You only need to give the corresponding characters without the trouble of measuring the position of the background image. And changing the icon size only requires changing the font size. Here are two recommended websites: (1) Alibaba Vector Icon Library http://iconfont.cn/ (2) IcoMoon’s https://icomoon.io/

The following is the specific method of using IcoMoon

1. Open the IcoMoon website and click IconMoon App.

 

2. After opening, there is an interface for specific icons. You can add your own icons to generate them, or you can choose the icons given by him. There will be a icon below the default icon. add Icons From Library After clicking, you can see more icons to choose from (both free and paid).

 

3. After clicking Generate Font, the interface of the currently selected icon will be generated, and the Generate Font in the lower right corner will also become Download , you can also make related download settings (for example: let it support ie6/7 and so on).

4. After the download is completed, there will be the following files. It is best to save these files and do not delete them at will.

  

5. Next, the specific method of using the icon font is given (you can also look at the css file using the icon font yourself - style.css Related content)

(1) Copy the font folder to the project and declare the font (the code here does not need to be memorized, because it is basically the same, just copy it directly)

 @font-face {
            font-family: 'icomoon';/*声明字体名称,可自行设置,应用的时候对应即可*/
            src: url('fonts/icomoon.eot?lep7lm');
            src: url('fonts/icomoon.eot?lep7lm#iefix') format('embedded-opentype'),
                 url('fonts/icomoon.ttf?lep7lm') format('truetype'),
                 url('fonts/icomoon.woff?lep7lm') format('woff'),
                 url('fonts/icomoon.svg?lep7lm#icomoon') format('svg');
            font-weight: normal;
            font-style: normal;
        }

(2), use the font

 .IconMoon {
            font-family: 'icomoon';
        }

(3), specifically display the corresponding icon

a, use it directly (very convenient, but generally do not use it, because you cannot distinguish these icons just by looking at the small squares) What is the difference?), for example, the small square in the middle of the

       
  •             
  •             
  • span tag is not a real square, but corresponds to the square on the right under each icon on the Demo page.

         

    b. Use the css pseudo-element selector before to add

                
  • 在这前面有一个home图标
  •             
  • 在这前面有一个smile2图标
  •             
  • 在这前面有一个tongue2图标
  •             
  • 在这前面有一个sad2图标
  •             
  • 在这前面有一个wink图标
  • The corresponding css code is

     .icon-home:before {/*content的值是对应的图标代码*/
                content: "\e900";
            }
            
            .icon-smile2:before {
                content: "\e9e2";
            }
            
            .icon-tongue2:before {
                content: "\e9e4";
            }
            
            .icon-sad2:before {
                content: "\e9e6";
            }
            
            .icon-wink:before {
                content: "\e9e7";
            }

    The effect picture is:

    (4). As mentioned before, these icons are essentially fonts, so they can be easily changed in color, size, shadow effect, etc.

    The specific code is as follows

    nbsp;html>
        <meta>
        <meta>
        <meta>
        <title>Document</title>
        <style>
            Ul {
                list-style: none;
            }
            
            @font-face {
                font-family: &#39;icomoon&#39;;
                /*声明字体名称,可自行设置,应用的时候标出即可*/
                src: url(&#39;fonts/icomoon.eot?lep7lm&#39;);
                src: url(&#39;fonts/icomoon.eot?lep7lm#iefix&#39;) format(&#39;embedded-opentype&#39;), url(&#39;fonts/icomoon.ttf?lep7lm&#39;) format(&#39;truetype&#39;), url(&#39;fonts/icomoon.woff?lep7lm&#39;) format(&#39;woff&#39;), url(&#39;fonts/icomoon.svg?lep7lm#icomoon&#39;) format(&#39;svg&#39;);
                font-weight: normal;
                font-style: normal;
            }
            
            .IconMoon {
                font-family: &#39;icomoon&#39;;
            }
            
            .icon-home:before {
                /*content的值是对应的图标代码*/
                content: "\e900";
                color: aqua;
                font-size: 20px;
            }
            
            .icon-smile2:before {
                color: deeppink;
                font-size: 40px;
                content: "\e9e2";
            }
            
            .icon-tongue2:before {
                color: orange;
                font-size: 10px;
                content: "\e9e4";
            }
            
            .icon-sad2:before {
                content: "\e9e6";
                text-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
                color: blue;
                font-size: 40px;
            }
            
            .icon-wink:before {
                content: "\e9e7";
                text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.4);
                color: blue;
                font-size: 40px;
            }
        </style>
        <p>
            </p>
                  
    • 在这前面有一个home图标
    •             
    • 在这前面有一个smile2图标
    •             
    • 在这前面有一个tongue2图标
    •             
    • 在这前面有一个sad2图标
    •             
    • 在这前面有一个wink图标
    •         
        

    6. When we want to add new icons to the font or subtract some icons, we only need to open the website again and enter IconMoon App page, and then click Import Icons to copy the selection.json file in the font file directory we downloaded before, and then we can re-select it based on our previous selection. It's done and it's very easy to use.

    Summary: The above is the entire content of this article, I hope it will be helpful to everyone's study. For more related tutorials, please visit CSS basic video tutorial , CSS3 video tutorial !

    The above is the detailed content of CSS What is an icon font (IconFont)? What is the use?. For more information, please follow other related articles on the PHP Chinese website!

    Statement
    This article is reproduced at:博客园. If there is any infringement, please contact admin@php.cn delete
    利用CSS怎么创建渐变色边框?5种方法分享利用CSS怎么创建渐变色边框?5种方法分享Oct 13, 2021 am 10:19 AM

    利用CSS怎么创建渐变色边框?下面本篇文章给大家分享CSS实现渐变色边框的5种方法,希望对大家有所帮助!

    css ul标签怎么去掉圆点css ul标签怎么去掉圆点Apr 25, 2022 pm 05:55 PM

    在css中,可用list-style-type属性来去掉ul的圆点标记,语法为“ul{list-style-type:none}”;list-style-type属性可设置列表项标记的类型,当值为“none”可不定义标记,也可去除已有标记。

    css与xml的区别是什么css与xml的区别是什么Apr 24, 2022 am 11:21 AM

    区别是:css是层叠样式表单,是将样式信息与网页内容分离的一种标记语言,主要用来设计网页的样式,还可以对网页各元素进行格式化;xml是可扩展标记语言,是一种数据存储语言,用于使用简单的标记描述数据,将文档分成许多部件并对这些部件加以标识。

    css3怎么实现鼠标隐藏效果css3怎么实现鼠标隐藏效果Apr 27, 2022 pm 05:20 PM

    在css中,可以利用cursor属性实现鼠标隐藏效果,该属性用于定义鼠标指针放在一个元素边界范围内时所用的光标形状,当属性值设置为none时,就可以实现鼠标隐藏效果,语法为“元素{cursor:none}”。

    css怎么实现英文小写转为大写css怎么实现英文小写转为大写Apr 25, 2022 pm 06:35 PM

    转换方法:1、给英文元素添加“text-transform: uppercase;”样式,可将所有的英文字母都变成大写;2、给英文元素添加“text-transform:capitalize;”样式,可将英文文本中每个单词的首字母变为大写。

    rtl在css是什么意思rtl在css是什么意思Apr 24, 2022 am 11:07 AM

    在css中,rtl是“right-to-left”的缩写,是从右往左的意思,指的是内联内容从右往左依次排布,是direction属性的一个属性值;该属性规定了文本的方向和书写方向,语法为“元素{direction:rtl}”。

    css怎么设置i不是斜体css怎么设置i不是斜体Apr 20, 2022 am 10:36 AM

    在css中,可以利用“font-style”属性设置i元素不是斜体样式,该属性用于指定文本的字体样式,当属性值设置为“normal”时,会显示元素的标准字体样式,语法为“i元素{font-style:normal}”。

    怎么设置rotate在css3的旋转中心点怎么设置rotate在css3的旋转中心点Apr 24, 2022 am 10:50 AM

    在css3中,可以用“transform-origin”属性设置rotate的旋转中心点,该属性可更改转换元素的位置,第一个参数设置x轴的旋转位置,第二个参数设置y轴旋转位置,语法为“transform-origin:x轴位置 y轴位置”。

    See all articles

    Hot AI Tools

    Undresser.AI Undress

    Undresser.AI Undress

    AI-powered app for creating realistic nude photos

    AI Clothes Remover

    AI Clothes Remover

    Online AI tool for removing clothes from photos.

    Undress AI Tool

    Undress AI Tool

    Undress images for free

    Clothoff.io

    Clothoff.io

    AI clothes remover

    AI Hentai Generator

    AI Hentai Generator

    Generate AI Hentai for free.

    Hot Article

    R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
    2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
    Repo: How To Revive Teammates
    1 months agoBy尊渡假赌尊渡假赌尊渡假赌
    Hello Kitty Island Adventure: How To Get Giant Seeds
    4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

    Hot Tools

    SublimeText3 Chinese version

    SublimeText3 Chinese version

    Chinese version, very easy to use

    mPDF

    mPDF

    mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

    SublimeText3 Linux new version

    SublimeText3 Linux new version

    SublimeText3 Linux latest version

    MantisBT

    MantisBT

    Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

    SAP NetWeaver Server Adapter for Eclipse

    SAP NetWeaver Server Adapter for Eclipse

    Integrate Eclipse with SAP NetWeaver application server.