当前位置:   article > 正文

使用fontmin 进行字体压缩

fontmin

在页面开发中设计经常会使用一些比较好看的特殊字体,引用完整的中文字体库都比较大,加载性能非常差,所以我们提取部分我们使用到的字体,这样可以把字体文件变成几KB。

fontmin 是一个纯 JavaScript 字体子集化方案,支持提取部分文字、转换字体格式、生成 webfont 和对应 css 样式。

fontmin 安装

官网:http://ecomfe.github.io/fontmin

Github:https://github.com/ecomfe/fontmin

  1. # 安装
  2. npm install --save fontmin

使用方法

项目根目录创建 trans-fongt.js 文件

  1. const Fontmin = require('fontmin')
  2. exports.transFontfile = (inputFile, outputDir, extractText) => (new Promise((res, rej) => {
  3. const fontmin = new Fontmin()
  4. .src(inputFile)
  5. .use(
  6. Fontmin.glyph({
  7. text: extractText,
  8. hinting: false, // keep ttf hint info (fpgm, prep, cvt). default = true
  9. })
  10. )
  11. .dest(outputDir)
  12. fontmin.run((err, files) => {
  13. if (err) {
  14. rej(err)
  15. } else {
  16. res(files)
  17. }
  18. })
  19. }))

vue.config.js 中

  1. const { transFontfile } = require('./trans-font')
  2. // 原生完整的字体文件存放路径
  3. const inputFile = path.resolve(__dirname, 'src/assets/font-input/HuXiaoBo-NanShen.ttf')
  4. // 抽取需要文字之后的字体文件存放路径
  5. const outputDir = path.resolve(__dirname, 'src/assets/font')
  6. // 需要用到的特殊字体文字 例:项目系统名称
  7. const extractText = ${process.env.VUE_APP_BASE_TITLE}
  8. transFontfile(inputFile, outputDir, extractText)

在原字体文件同级目录下创建 font.css 文件,使用 @font-face 引入字体

  1. @font-face {
  2. font-family: 'HuXiaoBo-NanShen'; /* 重命名字体名 */
  3. src: url('../font/HuXiaoBo-NanShen.ttf'); /* chrome, firefox, opera, Safari, Android, iOS 4.2+ */
  4. font-weight: normal;
  5. font-style: normal;
  6. }

主入口文件( main.js/app.vue)中引用 font.css 文件

  1. // main.js中引用
  2. import '@dm/assets/font-input/font.css'

使用

  1. .title {
  2. margin-right: 106px;
  3. font-family: HuXiaoBo-NanShen, sans-serif;
  4. font-size: 24px;
  5. font-weight: normal;
  6. color: rgba(255, 255, 255, 90%);
  7. }

.gitignore 忽略切割后的字体文件

/src/assets/font

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/386752
推荐阅读
相关标签
  

闽ICP备14008679号