ページを表示するフォントをユーザーが選択できるようにしたいと考えています 。Google が推奨する JavaScript を使用した方法を 次に示します。
WebFontConfig = {
google: {
families: ['Tangerine', 'Cantarell']
}
};
(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);
})();
ページの読み込み後にフォントを再取得できるようにするにはどうすればよいですか?