利用@font-face加载Web字体_html/css_WEB-ITnose

WBOY
풀어 주다: 2016-06-24 11:43:28
원래의
1054명이 탐색했습니다.

 

1.简介

 

     @font-face用于自定义字体样式,从服务器端取得字体样式,使浏览器可以显示客户端并不存在的样式效果,给用户带来更好的展示体验。

     @font-face并不是CSS3的新特性,早在98年就被写入CSS2的规范当中,目前在IE6都可支持。

 

2.语法

  

@font-face {    font-family: <FontName>;       //自定义的字体名称    src: <source> [<format>][,<source> [<format>]]*;      //字体文件路径    [font-weight: <weight>];     //是否加粗    [font-style: <style>];     //是否斜体}
로그인 후 복사

  由于各个浏览器对字体文件支持格式不同,所以我们一般引用多个格式的字体文件( eot\woff\ttf\svg),font-weight用于设置字体粗细,font-style用于设置是否是斜体。

  Tip:一般我们容易得到的字体文件是ttf格式的,可以通过 http://www.fontsquirrel.com/tools/webfont-generator 将ttf转换为其他几种字体。

3.实践效果:

Demo下载(第二种效果字体文件略大)

4.相关资料

https://icomoon.io/ 利用图标制作图片

http://www.fontsquirrel.com/tools/webfont-generator 字体转换工具

http://www.dafont.com/ 字体库

http://www.w3cplus.com/content/css3-font-face/ font-face详解(非常详细,推荐)

5.Bootstrap中的@font-face

  Bootstrap2.x中的glyphicon组件是利用CSS Spirit实现小图标的展示效果,到了3.x改用@font-face实现,源码如下:

@font-face {     //引入字体文件  font-family: 'Glyphicons Halflings';  src: url('../fonts/glyphicons-halflings-regular.eot');  src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');}.glyphicon {    //基础样式  position: relative;  top: 1px;  display: inline-block;  font-family: 'Glyphicons Halflings';  font-style: normal;  font-weight: normal;  line-height: 1;  -webkit-font-smoothing: antialiased;  -moz-osx-font-smoothing: grayscale;}//小图标内容设置.glyphicon-cloud:before {  content: "\2601";}.glyphicon-envelope:before {  content: "\2709";}……共计200+图标样式(具体可参考 http://v3.bootcss.com/components/)
로그인 후 복사

 

  可以注意到,这里都是用content:""设置的,应用时给相应元素(一般为span或ul)加上 “glyphicon glyphicon -***”类即可。多说一句,如果不利用before伪元素的特性,如何在普通文本上显示小图标呢?这里content内的字符默认是保存在Unicode Private Use Area(即用户自定义字符区域)中的,如果要在HTML中使用则需加 这个原理是将其转化为html实体。以下两个span的显示效果是相同的。

     

     

 

  OK,That's all,欢迎吐槽。

 

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿