我无法让 Google webfonts 在 express 3.0 中工作。
以标准方式加载字体似乎不起作用:
link(href='http://fonts.googleapis.com/css?family=Crete+Round')
但是以其中一种方式加载字体可以正常工作:
script(type="text/javascript")
WebFontConfig = {google: { families: [ 'Crete+Round::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);
})();
或者
style
@import url(http://fonts.googleapis.com/css?family=Crete+Round);