小编典典

@ Font-face在手机上不起作用

css

这是我的代码,它可以在台式机和平板电脑上完美运行,但不能在移动设备上运行。是代码还是在移动设备上无法使用某些字体

@font-face {
    font-family: 'Out';
    src: url('http://location/Outstanding.otf');
}

阅读 192

收藏
2020-05-16

共1个答案

小编典典

您需要添加所有src需要的内容来@font-face喜欢这个示例:

@font-face {
  font-family: 'MyWebFont';
  src: url('webfont.eot'); /* IE9 Compat Modes */
  src: url('webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('webfont.woff2') format('woff2'), /* Super Modern Browsers */
       url('webfont.woff') format('woff'), /* Pretty Modern Browsers */
       url('webfont.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('webfont.svg#svgFontName') format('svg'); /* Legacy iOS */
}

资料来源https//css-tricks.com/snippets/css/using-font-face/
希望能有所帮助,加油。

如果您需要转换字体,则需要此 字体生成器

2020-05-16