因此,跨浏览器 @font-face 解决方案似乎需要多个 HTTP 请求。这是我能找到的最好的代码:
@font-face {
font-family: 'Graublau Web';
src: url('GraublauWeb.eot');
src: local('Graublau Web Regular'), local('Graublau Web'),
url("GraublauWeb.woff") format("woff"),
url("GraublauWeb.otf") format("opentype"),
url("GraublauWeb.svg#grablau") format("svg");
}
就此而言,我最好只使用 Javascript 还是会同样减慢加载时间?我的加载速度(以及我的首要任务是 SEO)的最终解决方案是使用图像吗?
谢谢!