页面加载后动态加载谷歌字体(Dynamically load google fonts after

2019-09-03 05:21发布

我希望能够让用户选择他们想显示在页面的字体。 这里是,谷歌建议您将它使用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);
      })();

我怎么能修改此使页面加载后,我可以重新得到字体?

Answer 1:

看看在这个GitHub库的WebFont.load命令:

https://github.com/typekit/webfontloader

您可以加载要动态任何字体:

 <script src="http://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js"></script> 
  <script> 
        WebFont.load({
                    google: { 
                           families: ['Droid Sans', 'Droid Serif'] 
                     } 
         }); 
   </script>


文章来源: Dynamically load google fonts after page has loaded