FOUT Loader - Flash of Unstyled Text with a class
A font loader that implements the Flash of Unstyled Text ("FOUT with a class") algorithm, as described by Zach Leat.
This library simplifies the process of styling and loading web fonts in such a way that the user notices minimal "flash" while your fonts are still loading. It works by loading fonts in the background using Font Face Observer and setting a custom class on a (configurable) DOM element once each font loads. On subsequent loads of your page, FOUT Loader checks localStorage for a key unique to each web font as a heuristic for whether the font has been cached, in which case by definition we don't need to load the font again.
The result is a much smoother experience for the end user and a practically instantaneous rendering of web fonts on subsequent page loads.
Installation
npm install fout-loader --save
Usage
On-font-loaded callback
The fout()
function returns the Promise returned by Font Face Observer, so if you want to do anything extra once your font has loaded, you can do so in a then()
callback:
Loading multiple fonts
Just like with Font Face Observer, you can simply call it multiple times. It's just a function, so you don't need to instantiate anything:
Avoiding shifting text
To avoid jarring shifts in the rendered text as the font changes, I highly recommend you check out the awesome Font Style Matcher by Monica Dinculescu. Using this tool, you can hone in a good fallback style to apply to a system font while your web font loads. It only takes a couple minutes of fiddling, and it's actually pretty fun to play with!
Once you arrive at a good combination of fallback/web font styles, apply them in your CSS by nesting the desired styles under the fontLoadedClass
selector. For example, if your fontLoadedClass
is "merriweather-loaded"
, use this CSS:
Caveats
- Even if fonts are cached, instantaneous web font renders rely on
localStorage
being available. IflocalStorage
is not available or the key for a given font has been deleted for any reason, FOUT Loader will fall back to loading the font over the network, resulting in a FOUT. This is the case even if the font is actually cached: the key word here is heuristic, the technical term for "pretty good indicator." - Conversely, if the user has cleared their cache but not
localStorage
, the class will be added prematurely and a flash will occur as FOUT Loader downloads it. This won't occur under normal circumstances.