Home  >  Article  >  Web Front-end  >  In-depth understanding of @font face rules in the context of CSS3

In-depth understanding of @font face rules in the context of CSS3

黄舟
黄舟Original
2017-07-18 13:32:061647browse

As soon as many people mention the @font face rules, they will involuntarily say "Oh~~" in their hearts: "I know this, it can be used to generate custom character icons!" The words are Yes, the problem is that many people think that generating small character icons is all the @font face rules. In fact, it is just one of the functions. If you really understand the @font face rules, you will I found that @font face rules can actually do a lot of things, especially when we don’t consider IE7 and IE8 browsers.

1. The essence of @font face is a variable

Although it is said that the real variable var appeared in the new world of CSS3 (see this article: "Understanding CSS/CSS3 Native variable var"), but in fact, in the CSS world, things that are essentially variables have already appeared. The @font face rule is one of them. @font face is essentially a defined font. Or a variable of a font set. This variable is not just a simple custom font, but also includes font renaming, default font style settings, and so on.

The awareness of this "variable" is very important. It helps us to realize the potential of @font face, which can make our CSS code more streamlined and easier to maintain.

Before getting to the point, we first need to have a general overview of the @font face rules. The CSS properties supported by

@font face rules are: font-family, src, font-weight, font-style, unicode-range, font-variant, font-stretch, font-feature-settings. For example:

@font-face {
  font-family: 'example';
  src: url(example.ttf);
  font-style: normal;
  font-weight: normal;
  unicode-range: U+0025-00FF;
  font-variant: small-caps;
  font-stretch: expanded;
  font-feature-settings:"liga1" on;
}

There are quite a lot of attributes, and some attributes may mean that he knows you but you don’t know him. But from a practical point of view, some attributes do not need to be studied in detail, such as font-variant, font-stretch, font-feature-settingsthis3 attributes. why? Because according to my experience, these 3 attributes feel to me more like they are specially designed for English, so if there is no business need, you can put them aside first.

Okay, now, do you feel that the pressure is much lessened all of a sudden? The only customizable attributes we need to care about are the following:

@font-face {
  font-family: 'example';
  src: url(example.ttf);
  font-style: normal;
  font-weight: normal;
  unicode-range: U+0025-00FF;
}

I guess some friends may be confused@font-faceWhat are the uses of the font-style, font-weight and unicode-range in the rules, especially font-style, font-weight, they seem to be here specifically to make soy sauce. In fact, every attribute here is not an ordinary person, but a person with a story.

Before introducing each attribute, it is necessary to solemnly declare that there will be a large number of cases, all of which are based on local local fonts, but IE7 and IE8 browsers do not Supports local local fonts, so the title of this article is "In the context of CSS3...", for this reason, everyone should pay attention to it. If your project also needs to be compatible with IE8, this article introduces these Good things may need to be considered carefully.

2. Detailed introduction to commonly used CSS properties of @font face

Let’s introduce them one by one:

1.font-family

The font-family here can be regarded as a font variable, and the name can be very arbitrary, such as a direct dollar sign '$', for example:

@font-face {
  font-family: '$';
  src: local("Microsoft Yahei");
}

This At that time, for ordinary HTML elements, if you set the font-family attribute value to '$', the font representation will become "Microsoft Yahei" (if this is available locally) font).

You can even use pure spaces directly in non-IE browsers ' ', but one thing you need to pay attention to is that when using these weird characters or spaces, you must add quotation marks.

Although your variable names can be arbitrary, there is a type of name that cannot be set casually, which is the font name that originally existed in the system, such as the following code:

@font-face {
  font-family: 'Microsoft Yahei';
  src: local(SimSun);
}

From now on "Microsoft Yahei" "The font becomes "Songti". Of course, sometimes we may need this kind of coverage. For example, if a new design manager comes, he dislikes "Microsoft Yahei" the most in his life, and hopes to change to other fonts. At this time, we can use this variable coverage to easily Easily complete font changes for the entire site.

2.src

src means calling a font file, either a local font file (supported by IE9+) or an online address ( There may be cross-domain restrictions).

This article mainly focuses on the application of local font files.

Function 1: Abbreviation of font file name

Many websites now use the "Microsoft Yahei" font, but the name of "Microsoft Yahei" is a bit long:

.font {
    font-family: 'Microsoft Yahei';
}

If my little hand shakes, I might spell it wrong, and I have to add quotation marks and spaces, which is really troublesome. At this time we can use @font face to simplify the rules, which will be easier to remember and faster to write:

@font-face {
  font-family: YH;
  src: local("Microsoft Yahei");
}

When used directly:

.font {
    font-family: YH;
}

How clean , how refreshing, how comfortable the mood is!

src还支持多个local字体地址同时出现,嘿,这简化的CSS代码可不是一个字体名了,而是一大波字体名称了,例如某网站使用了大量类似下面的font-family属性值:

body {
    font-family: PingFangSC-Regular,HelveticaNeue-Light,'Helvetica Neue Light','Microsoft YaHei',sans-serif;
}
.xxxx {
    font-family: PingFangSC-Regular,HelveticaNeue-Light,'Helvetica Neue Light','Microsoft YaHei',sans-serif;
}

虽然说,实现的时候,借助了Sass, Less之类工具让字体名称们成为了变量,写代码的时候好像也没怎么吃力,但是最终生成的CSS其实是比较啰嗦,如果我们走本质上就是变量的@font face,是不是不仅开发简单,代码也简单了,如下处理:

@font-face {
  font-family: BASE;
  src: local("HelveticaNeue-Light"), local("Helvetica Neue Light"),  local("PingFang SC"), local("Microsoft YaHei"), local(sans-serif);
}

于是我们用字体的时候直接:

body {
    font-family: BASE;
}
.xxxx {
    font-family: BASE;
}

看语义又好,代码又简单,实用又方便,超级使用的小技巧。

当然,local本地作用还不止这些。

业界有个名为“字蛛”的中文字体处理工具,可以提取页面中使用的特殊中文字体并生成新的体积更小的自定义字体。我们可以在这个基础上更进一步,举个例子:

一些特殊的标题设计师就是喜欢用“方正粗雅宋”这个字体(已经购得版权),但是很显然,这么帅气的字体,几乎很少有用户安装的,所以实际开发的时候,全都是通过工具而生成一个全新的精简版的“方正粗雅宋”字体文件,再通过src属性url()方法外链这个字体文件。

很棒的方案,但还不够完美,为什么呢?虽然安装“方正粗雅宋”这个字体的用户并不多,但并不表示没有用户使用之。试想一下,假如有用户安装了这个字体,结果你在网页呈现的时候,还要再去外链一个额外的文件地址,岂不是白白的浪费?既浪费流量,体验又不一定好,如果字体文件加载慢,会看到文字“变形”的过程,显然是不友好的。

我们可以借助@font face规则中的local实现代码和体验上的进一步的提升,如下:

@font-face {
  font-family: FZCYS;
  src: local("FZYaSongS-B-GB"), 
       url("FZCYS.woff2"),  
       url("FZCYS.woff"),
       url("FZCYS.ttf");
}

于是乎,那些安装了“方正粗雅宋”这个字体的用户,就没有任何字体文件请求。加载更快了,用户体验上升了,还省了流量,如此百益无一害的事情,还不妥妥的用起来。

3.font-style

在Chrome浏览器下,@font face规则设置font-style:italic可以让文字倾斜,但是这并不是其作用所在。

@font face规则中的font-stylefont-weight类似,都是用来设置对应字体样式或自重下该使用什么字体。因为有些字体可能会有专门的斜体字,注意这个斜体字,并不是让文字的形状倾斜,而是专门设计的倾斜的字体,很多细节会跟物理上的请求不一样。于是,我在CSS代码中使用font-style:italic的时候,就会调用这个对应字体,如下示意:

@font-face {
  font-family: 'I';
  font-style: normal;
  src: local('FZYaoti');
}
@font-face {
  font-family: 'I';
  font-style: italic;
  src: local('FZShuTi');
}

由于专门的斜体字不太好找,所以我使用“方正姚体”和“方正舒体”代替做示意。上面CSS代码我解读一下:制定一个字体,名叫'I',当文字样式正常的时候,字体表现使用“方正姚体”,当文字设置了font-style:italic的时候,字体表现为“方正舒体”。

好,现在假设有下面这样的CSS和HTML:

.i {
  font-family: I;
}
<p><i class="i">类名是i,标签是i</i></p>
<p><span class="i">类名是i, 标签是span</span></p>

请问最终的表现是怎样的?

由于<i></i>标签天然font-style:italic,因此理论上,上面一行文字表现为“方正舒体”,下面一行为“方正姚体”,最终结果是如何呢?

当当当当,完全符合,如下截图:

In-depth understanding of @font face rules in the context of CSS3

这下大家应该明白,@font face规则中的font-style是干嘛用的了吧。

4.font-weight

font-weightfont-style类似,不过是定义了不同字重使用不同字体,对于中午而言,这个要比font-style适用性强很多。我这里就有一个非常具有代表性的例子,版权字体“汉仪旗黑”自重非常丰富,但是这个字体不像“思源黑体”,天然可以根据font-weight属性值加载对应的字体文件,怎么办呢?很简单,使用@font face规则重新定义一下即可,例如下面的CSS代码:

@font-face {
  font-family: &#39;QH&#39;;
  font-weight: 400;
  src: local(&#39;HYQihei 40S&#39;);
}
@font-face {
  font-family: &#39;QH&#39;;
  font-weight: 500;
  src: local(&#39;HYQihei 50S&#39;);
}
@font-face {
  font-family: &#39;QH&#39;;
  font-weight: 600;
  src: local(&#39;HYQihei 60S&#39;);
}

解读一下就是,是一个全新的字体,名为'QH',当字重font-weight400的时候,使用“汉仪旗黑 40S”字重字体,为500的时候,使用“汉仪旗黑 50S”字重字体,为600的时候,使用“汉仪旗黑 60S”字重字体。

于是乎,当我们应用如下的CSS和HTML代码的时候:

<p style="margin-bottom: 7px;">.hy-40s,<br/>.hy-50s,<br/>.hy-60s {<br/>  font-family: &#39;QH&#39;;<br/>}<br/>.hy-40s {<br/>  font-weight: 400;<br/>}<br/>.hy-50s {<br/>  font-weight: 500;<br/>}<br/>.hy-60s {<br/>  font-weight: 600;<br/>}<br/></p>
<ul>
  <li class="hy-40s">汉仪旗黑40s</li>
  <li class="hy-50s">汉仪旗黑50s</li>
  <li class="hy-60s">汉仪旗黑60s</li>
</ul>

我们就可以看到,文字粗细错落有致的效果,如下截图:

In-depth understanding of @font face rules in the context of CSS3

如果用在网页开发中,必定会让我们的界面更加的细腻,设计更加的精致,视觉更加的愉悦。

5.unicode-range

unicode-range的作用是可以让特定的字符或者字符片段使用特定的字体。举个例子,下图是文字应用了“微软雅黑”字体后的效果:

In-depth understanding of @font face rules in the context of CSS3

但是,这两个“引号”左右间隙不均,方向不明,实在是看着不爽,此时我们就专门指定这两个“引号”使用其他字体,如下CSS:

@font-face {
  font-family: BASE;
  src: local("Microsoft Yahei");
}
@font-face {
  font-family: quote;
  src: local(&#39;SimSun&#39;);    
  unicode-range: U+201c, U+201d;
}
.font {
    font-family: quote, BASE;
}

然后效果就变成这样子了:

In-depth understanding of @font face rules in the context of CSS3

嗯,一下子变得舒服多了。

关于unicode-range更多内容,可参考我之前写的文章“CSS unicode-range特定字符使用font-face自定义字体”。

The above is the detailed content of In-depth understanding of @font face rules in the context of CSS3. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn