CSS自定义字体font-face

@Font-face目前浏览器的兼容性:


Webkit/Safari(3.2+) 

TrueType/OpenType TT (.ttf) 、OpenType PS (.otf);


Opera (10+) 

TrueType/OpenType TT (.ttf) 、 OpenType PS (.otf) 、 SVG (.svg);


Internet Explorer 

自ie4开始,支持EOT格式的字体文件;ie9支持WOFF;


Firefox(3.5+) 

TrueType/OpenType TT (.ttf)、 OpenType PS (.otf)、 WOFF (since Firefox 3.6)


Google Chrome 

TrueType/OpenType TT (.ttf)、OpenType PS (.otf)、WOFF since version 6


由上面可以得出:.eot + .ttf /.otf + svg + woff = 所有浏览器的完美支持


语法

@font-face {
  [font-family: <family-name>;]?
  [src: [ <uri> [format(<string>#)]? | <font-face-name> ]#;]?
  [unicode-range: <urange>#;]?
  [font-variant: <font-variant>;]?
  [font-feature-settings: normal|<feature-tag-value>#;]?
  [font-stretch: <font-stretch>;]?
  [font-weight: <weight>];
  [font-style: <style>];
}


font-face 在css中具体的 使用方法

/*声明 WebFont*/

@font-face {
  font-family: 'pinghei';
  src: url('../font/pinghei.eot');
  src:
    url('../font/pinghei.eot?#iefix') format('embedded-opentype'),
    url('../font/pinghei.woff') format('woff'),
    url('../font/pinghei.ttf') format('truetype'),
    url('../font/pinghei.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}


/*使用指定字体*/

.test {
    font-family: 'pinghei';
}


相关工具介绍 

font压缩工具地址:https://github.com/aui/font-spider 

gulp 插件: https://github.com/aui/gulp-font-spider 

grunt 插件:https://github.com/aui/grunt-font-spider



声明:本站所有文章和图片,如无特殊说明,均为原创发布。商业转载请联系作者获得授权,非商业转载请注明出处。
真诚赞赏,手留余香
赞赏
随机推荐
MySQL 的 sql_mode 模式介绍:为什么 MySQL 中 int,float,double 类型字段插入空字符时自动转为0
WordPress 使用 shortcode() 增加编辑器功能
JavaScript 原生拖放
MySQL 数据库中货币单位如何存储
CSS 滚动条样式修改
Rollup 教程
WordPress 实现自定义 Ajax 请求
WordPress 上传附件