谷歌字体现在在中国被封锁/严重限制,我们的网站现在很慢。
我们想要处理失败情况而不是让我们的用户等待。当 Google 无法交付时,可以故障恢复使用系统字体,那么,如果我们使用下面的代码,如何解决这个问题?
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
会改用 JS API 来解决这个问题吗?
WebFontConfig = {
google: { families: [ 'Open+Sans::latin' ] } };
(function() {
var wf = document.createElement('script');
wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
'://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
wf.type = 'text/javascript';
wf.async = 'true';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(wf, s); })();