我使用的是https://github.com/millermedeiros/requirejs-plugins
加載谷歌字體,它對基本字體工作正常。使用require.js字體插件加載Google Web字體
require.config({
paths : {
font: 'lib/require/font',
}
});
define([
'font!google,families:[Roboto]'
], function(){
//all dependencies are loaded
}
);
上面是好的,但如果我嘗試Roboto:400,500,700,900
,它不會工作加載大膽的字體。
嘿@Joe做你最終得到解決這個問題 –