0.0.2 • Published 11 years ago
fontonload v0.0.2
fontonload
Cross browser detecting web font loading, without checking by timer (setTimeout / setInterval).
Usage
- Patch your font with the
patch.ttffile, which include a blank graph (non-spacing and no-marking) on U+FFFD - Declare the
@font-facein your CSS. - Load the library.
FontOnload('fontname', {
eotFile: './fonts/fontname.eot',
success: function() {
},
fail: function(e) {
console.log(e.name)
}
})You can check the demo page to see if it works.
How it Works
- It uses the CSS Font Loading Module when available.
- For browsers which can auto trigger
scrollevent. It uses a scroller element, which contains anU+FFFDcharactor, to detect the font loading. When your patched font load, the height and width of the detection element will become 0, that will trigger ascrollevent. It's similar to smhn's article, but simple (no embedded font) in detection. - For IE 6 – 9, these browsers won't trigger a
scrollevent after height/width decreased. But fortunately I found that they don't have FOUT if the font file is in cache, so the code just preload the eot font to make sure the font file is in cache. The preload works is make by iframe, and detect the loading by it'sonloadevent. (@font-face will blockonloadevent) - It exclude the browser which don't support web font (BlackBerry 5/6, Opera Mini, Windows Phone 7/7.5)
License
0.0.2
11 years ago