我正在尝试从webfont测量特定字符的宽度。 Google的Webfont Loader提供的有效活动稍有过时,并且会对默认字体进行测量。
我正在使用的脚本的精简版本:
window.WebFontConfig = {
google: {
families: ['Anonymous Pro:400,400italic,700,700italic']
},
active: function () {
$.fn.ready(MeasureM);
}
};
function MeasureM() {
var e = document.getElementById('div');
e.style.font = "15px/15px 'Anonymous Pro'";
e.appendChild(document.createTextNode('M'));
console.log(e.offsetWidth, e.offsetHeight);
}
(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);
})();
HTML元素:
<div id="div" style="display: table;"></div>
为方便起见jsFiddle。
我遇到的问题似乎只发生在Firefox中,是否有解决方案?或者,我有什么误解吗?