fontfaceonload
Usage
Use with any existing @font-face declaration.
@font-face {
font-family: My Custom Font Family;
/* src and other properties as normal */
}
Include the library. Call the JavaScript.
FontFaceOnload( "My Custom Font Family", {
success: function() {},
error: function() {},
timeout: 5000 // in ms. Optional, default is 10 seconds
});
Use with Content Fonts
To allow the fallback font to be visible while the @font-face is loading, simply use FontFaceOnload like so:
FontFaceOnload( "My Custom Font Family", {
success: function() {
document.documentElement.className += " my-custom-font-family";
}
});
and then use the class to scope your usage of the custom font:
body {
font-family: sans-serif;
}
.my-custom-font-family body {
font-family: My Custom Font Family, sans-serif;
}
Use with Icon Fonts
To hide the fallback font so that weird fallback characters are not visible while the icon font is loading, use FontFaceOnload with the glyphs
option like so:
FontFaceOnload( "My Custom Font Icon", {
success: function() {
document.documentElement.className += " my-custom-font-icon";
},
glyphs: "\uE600\uE601\uE602\uE605" // Optional, default is "". Useful for icon fonts: a few code points from your custom font icon.
});
and then use the class to scope your usage of the custom font:
.icon {
display: none;
}
.my-custom-font-family .icon {
font-family: My Custom Font Icon, sans-serif;
}
How it Works
This uses the CSS Font Loading Module when available (currently in Chrome 35+ and Opera 22+). When that isn’t available, it uses a very similar approach to the one used in the TypeKit Web Font Loader (which is currently 7.1KB GZIP).
Basically, it creates an element with a font stack including the web font and a default serif/sans-serif typeface. It then uses a test string and measures the dimensions of the element at a certain interval. When the dimensions are different than the default fallback fonts, the font is considered to have loaded successfully.
If you’d like a full polyfill for the CSS Font Loading Module, follow along with Bram Stein’s Font Loader. I believe the specification has changed since he launched this polyfill, but he’s working on an updated version.
Building the project
Run these commands:
npm install
bower install
grunt init
grunt
as normal.
Configuring Grunt
Rather than one giant Gruntfile.js
, this project is using a modular Grunt setup. Each individual grunt configuration option key has its own file located in grunt/config-lib/
(readonly upstream configs, do not modify these directly) or grunt/config/
(project specific configs). You may use the same key in both directories, the objects are smartly combined using Lo-Dash merge.
For concatenation in the previous Gruntfile setup, you’d add another key to the giant object passed into grunt.initConfig
like this: grunt.initConfig({ concat: { /* YOUR CONFIG */ } });
. In the new configuration, you’ll create a grunt/config/concat.js
with module.exports = { /* YOUR CONFIG */ };
.
License
MIT License