对不起,我的英语优先。我错过了什么?我使用以下代码来防止渲染阻止内容:
WebFontConfig = {
google: {
families: ['Lato:300,300i,700']
},
active: function () {
//document.querySelector('body').fadeIn(1000);
},
};
(function () {
var wf = document.createElement('script');
wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
'://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js';
wf.type = 'text/javascript';
wf.async = 'true';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(wf, s);
})();
没有成功的speedtest抱怨渲染阻塞字体(async = true)...。我想知道是否还有其他方法可以防止此渲染阻塞...。