Git Product home page Git Product logo

turgunovm / web-font-loading-recipes Goto Github PK

View Code? Open in Web Editor NEW

This project forked from zachleat/web-font-loading-recipes

0.0 2.0 0.0 420 KB

A bunch of demos for different web font loading strategies. Companion to https://www.zachleat.com/web/comprehensive-webfonts/ Read more: https://www.zachleat.com/web/recipes/

Home Page: https://www.zachleat.com/web-fonts/demos/

License: MIT License

HTML 99.72% CSS 0.28%

web-font-loading-recipes's Introduction

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: swap

preload

font-display: swap with preload

FOUT with a Class

FOFT

FOFT using only font-display (mix font-display values)

  • Code
  • Demo (4 web fonts—1 swap / 3 optional)
  • ⚠️ This method does not currently have cross-browser support. I’m hoping this will change—learn more.

Critical FOFT

Critical FOFT with Data URI

Critical FOFT with preload

The eBay Method

  • Code: HTML and Lazy-loaded JavaScript
  • Emulate font-display: optional with JavaScript.
    • Notable that it lazy loads the font loading polyfill only if CSS Font Loading API is not supported
  • Read more at eBay’s Font Loading Strategy.
  • Demo (4 web fonts) (polyfill is lazy loaded when CSS Font Loading API is not supported)

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

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
  • 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

  • font-display: optional
    • A little harsh to put this in the Not Recommended section but I like my web fonts on an empty-cache visit 😎
    • Code
    • Demo** (4 web fonts)
  • 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)

Anti-patterns and Deprecated Methods

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.

web-font-loading-recipes's People

Contributors

zachleat avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.