Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using Font-Awesome, but while the font files are not loaded, the icons appear with .

So, I want these icons to have display:none while files are not loaded.

@font-face {
  font-family: "FontAwesome";
  src: url('../font/fontawesome-webfont.eot');
  src: url('../font/fontawesome-webfont.eot?#iefix') format('eot'), url('../font/fontawesome-webfont.woff') format('woff'), url('../font/fontawesome-webfont.ttf') format('truetype'), url('../font/fontawesome-webfont.svg#FontAwesome') format('svg');
  font-weight: normal;
  font-style: normal;
}

How do I know that these files have been loaded and I'm finally able to show the icons?

Edit: I'm not talking when the page is loaded (onload), because the font could be loaded before the whole page.

share|improve this question

4 Answers

up vote 6 down vote accepted

Now on GitHub: https://github.com/patrickmarabeas/Font-Face-Font-Checker

Essentially the method works by comparing the width of a string in two different fonts. We are using Comic Sans as the font to test against, because it is the most different of the web safe fonts and hopefully different enough to any custom font you will be using. Additionally we are using a very large font-size so even small differences will be apparent. When the width of the Comic Sans string has been calculated, the font-family is changed to your custom font, with a fallback to Comic Sans. When checked, if the string element width is the same, the fallback font of Comic Sans is still in use. If not, your font should be operational.

I rewrote the method of font load detection into a jQuery plugin designed to give the developer the ability to style elements based upon whether the font has been loaded or not. A fail safe timer has been added so the user isn’t left without content if the custom font fails to load. That’s just bad usability.

I have also added greater control over what happens during font loading and on fail with the inclusion of classes addition and removal. You can now do whatever you like to the font. I would only recommend modifying the fonts size, line spacing, etc to get your fall back font as close to the custom as possible so your layout stays intact, and users get an expected experience.

Here's a demo: http://pulse-dev.com/files/stackoverflow/fontfacedelay/index4.htm

Throw the following into a .js file and reference it.

(function($) {

    $.fn.fontChecker = function(config) {

        var $this = $(this);

        var defaults = {
            font: $this.css("font-family"),
            fontAwesome: false,
            onLoad: '',
            onFail: '',
            testFont: 'Comic Sans MS',
            testString: 'QW@HhsXJ',
            testFontAwesome: 'icon-glass',
            delay: 50,
            timeOut: 2500
        };

        var config = $.extend(defaults, config);

        var tester = document.createElement('span');
        tester.style.position = 'absolute';
        tester.style.top = '-9999px';
        tester.style.left = '-9999px';
        tester.style.visibility = 'hidden';
        tester.style.fontFamily = config.testFont;
        tester.style.fontSize = '250px'; 

        if(config.fontAwesome === true) {
            tester.className = config.testFontAwesome;
        }
        else {
            tester.innerHTML = config.testString;
        }

        document.body.appendChild(tester);

        var fallbackFontWidth = tester.offsetWidth;

        tester.style.fontFamily = config.font + ',' + config.testFont;

        function checkFont() {

            var loadedFontWidth = tester.offsetWidth;

            if (fallbackFontWidth === loadedFontWidth){

                if(config.timeOut < 0) {
                    $this.removeClass(config.onLoad);
                    $this.addClass(config.onFail);
                }
                else {
                    $this.addClass(config.onLoad);
                    setTimeout(checkFont, config.delay);
                    config.timeOut = config.timeOut - config.delay;
                }

            }
            else {
                $this.removeClass(config.onLoad);
            }
        };

        checkFont();

    };


})(jQuery)

Apply a class where you use the custom font. The function will check the font-family that has been applied itself.

.checkme {
    font-family: "Lobster"; //don't specify fallback font
    font-size: 120px;
}

.pickme {
    font-family: "FontAwesome";
    font-size: 120px;
}

.fontLoading {
    visibility: hidden !important; 
    //!important may or may not be necessary, depending on your CSS structure 
}

.fontFail {
    visibility: visible !important;
}

.anotherClass {
    font-family: verdana !important;
    font-size: 20px !important;
    color: green !important;
}


<span class="checkme">Crafting</span>
<span class="checkme">Serious</span>
<span class="checkme">Websites</span>

<i class="icon-search pickme"></i>
<i class="icon-inbox pickme"></i>
<i class="icon-barcode pickme"></i>

Call it like following code block.

$(document).ready(function() {

    $('.pickMe').fontChecker({
        fontAwesome: true, //set to true if using Font Awesome (default is false)
        onLoad: 'fontLoading', //call this class(es) when the font is loading (!important tag may be needed)
        onFail: 'fontFail' //call this class(es) when the font has failed to load (!important tag may be needed)
    });

    $('.checkme').fontChecker({ //non Font Awesome font
        onLoad: 'fontLoading',
        onFail: 'fontFail anotherClass'
    });


});

FONT-AWESOME and OTHER ICON FONTS

You will need to be sure you set fontAwesome: true in order to test Font Awesome. I haven't checked out other icon fonts, but they will need a similar patch. Leave a note here if you find a font that doesn't work with the above.

share|improve this answer

Try WebFont Loader, developed by Google and Typekit.

This example first displays the text in the default serif font; then after the fonts have loaded it displays the text in the specified font. (This code reproduces Firefox's default behavior in all other modern browsers.)

share|improve this answer

Try something like

$(window).bind("load", function() {
       $('#text').addClass('shown');
});

and then do

#text {visibility: hidden;}
#text.shown {visibility: visible;}

The load event should fire after the fonts are loaded.

share|improve this answer
This is the same of $(function(){...}) that runs when the entire page is loaded. – Shankar Cabus Sep 7 '12 at 5:56
it is not the same. hayk.mart's example will trigger when the DOM (HTML) AND assets within the page (CSS, JS, images, frames) are finished loading. Your example when only the DOM has finished loading. – Blaise Dec 22 '12 at 20:28

Here's another way of knowing if a @font-face has already been loaded without having to use timers at all: http://smnh.me/web-font-loading-detection-without-timers/

Github: https://github.com/smnh/FontLoader

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.