Skip to content

zachleat/web-font-loading-recipes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

web-font-loading-recipes

A bunch of demos for different web font loading strategies. Some of these are included on A Comprehensive Guide to Font Loading Strategies, some of them are more experimental.

Demos are hosted at https://www.zachleat.com/web-fonts/demos/

Recommended Methods

As web fonts are a progressive enhancement and with increasing support for the CSS Font Loading API, we can look forward to a time in which we won’t need to inline a polyfill into the header (for even faster font loading). The simplified CSS Font Loading API recipes are the defaults, but polyfilled versions are included for broader browser support—notably only the polyfilled versions will show web fonts in Internet Explorer and Edge web browsers (which do not have support for the CSS Font Loading API).

font-display

preload

font-display and preload

FOUT with a Class

FOFT

FOFT using only font-display

  • Code
  • Demo (4 web fonts—1 swap / 3 optional)

Critical FOFT

Critical FOFT with Data URI

Critical FOFT with preload

“The Compromise”: Critical FOFT with preload, with a polyfill fallback emulating font-display: optional

  • Code
  • TODO Read more
    • Builds on the eBay method described in the experiments below.
  • Demo (5 web fonts—1 subset) (polyfill is lazy loaded when CSS Font Loading API is not supported)
  • Currently in use on zachleat.com and smashingmagazine.com

Experiments in Progress

You’ll probably see blog posts on these at some point.

  • Metric compatible web fonts
    • Show how fonts can look without FOUT reflow if they are metric compatible.
  • FOUT metric matching with a Variable Font
    • Reduction in FOUT reflow (reduce text movement on web font render)
    • Related: Font style matcher from @notwaldorf
  • Emulate font-display: optional with JS (the eBay method)
    • Notable in that it lazy loads the font loading polyfill only if the CSS Font Loading API is not supported
  • FOUT without a class
    • .style.fontFamily method (only works well with one family per page), first saw this in a tweet from @simevidas
    • CSS Font Loading API .add() method: Doesn’t require any modification of the CSS, injects the web fonts using JS programmatically (the Asynchronous Data URI method below also does this). Documented in the Webfont Handbook from @bramstein.

Not Recommended but included for Posterity

  • System fonts
  • Unceremonious Web Fonts
  • Unceremonious Faux Web Fonts
  • Unceremonious Web Fonts, WOFF2 Only (Cutting the Mustard)
    • Code
    • Old browsers used to render FOIT without a timeout, which in practice made web fonts a single point of failure. Using WOFF2 only cuts the mustard to modern browsers that have a three second FOIT timeout for web fonts. Three seconds is still way too long for me to implement this in production, but it’s worth noting.
    • Demo** (4 web fonts)

Deprecated Methods

  • Inline Data URI
  • Asynchronous Data URI
  • Anything that injects a new <style> with @font-face blocks inside. Really bad repaint cost—seriously, don’t do this.

Failed Experiments

Asynchronous CSS

This is a common thing people try—they asynchronously load the CSS (and only the CSS). Heck, I used this behavior before I started studying web font loading.

@supports and font-display

  • Reasons for trying:
    • might be nice to only use web fonts if you can FOUT with font-display
    • might be nice to have FOUT with a class if font-display not supported (and work well without JS dependencies)
  • Failed: @supports doesn’t work with font-face descriptors.
  • Code
  • Demo

** Take note that these methods will FOUT in Internet Explorer and Edge by taking advantage of their default font loading behavior.