3

https://github.com/millermedeiros/requirejs-plugins用来加载谷歌字体,它适用于基本字体。

require.config({
  paths : {
    font: 'lib/require/font',
  }
});

define([
  'font!google,families:[Roboto]'
  ], function(){
    //all dependencies are loaded
  }
);

以上很好,但如果我尝试Roboto:400,500,700,900,加载更粗的字体将不起作用。

4

1 回答 1

1
define(['backbone','app-init','font!google,families:[Yanone Kaffeesatz:700]'],
   function(Backbone, AppInit,Font) {
      AppInit.initialize();
   }
);
于 2013-12-03T12:23:19.890 回答