<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: CSS &#064;font-face flickering in Firefox, somewhat solved</title>
	<atom:link href="http://www.boxcarpress.com/us/blog/2009/11/05/css-font-face-flickering-in-firefox-somewhat-solved/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.boxcarpress.com/us/blog/2009/11/05/css-font-face-flickering-in-firefox-somewhat-solved/</link>
	<description></description>
	<lastBuildDate>Thu, 09 Feb 2012 04:33:57 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Nick</title>
		<link>http://www.boxcarpress.com/us/blog/2009/11/05/css-font-face-flickering-in-firefox-somewhat-solved/comment-page-1/#comment-478</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Tue, 26 Oct 2010 21:51:37 +0000</pubDate>
		<guid isPermaLink="false">http://boxcarpress.com/us/blog/?p=633#comment-478</guid>
		<description>Dude. You freaking rule. This solved all my issues.</description>
		<content:encoded><![CDATA[<p>Dude. You freaking rule. This solved all my issues.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://www.boxcarpress.com/us/blog/2009/11/05/css-font-face-flickering-in-firefox-somewhat-solved/comment-page-1/#comment-462</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Wed, 06 Oct 2010 04:05:05 +0000</pubDate>
		<guid isPermaLink="false">http://boxcarpress.com/us/blog/?p=633#comment-462</guid>
		<description>Why not to hide just text which is affected? Instead of flashing page font face will work as on webkit, ie only text will be hidden until the font is loaded.</description>
		<content:encoded><![CDATA[<p>Why not to hide just text which is affected? Instead of flashing page font face will work as on webkit, ie only text will be hidden until the font is loaded.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aaron</title>
		<link>http://www.boxcarpress.com/us/blog/2009/11/05/css-font-face-flickering-in-firefox-somewhat-solved/comment-page-1/#comment-451</link>
		<dc:creator>Aaron</dc:creator>
		<pubDate>Wed, 29 Sep 2010 16:55:16 +0000</pubDate>
		<guid isPermaLink="false">http://boxcarpress.com/us/blog/?p=633#comment-451</guid>
		<description>I dig the solution but I was still seeing a flicker when the content loaded so I modified your script a little. It works well for me. Input always appreciated.

function removeLoading() {
	$(&#039;#main&#039;).animate({
		opacity:1
	}, 700, function() {
		$(&#039;#main&#039;).removeClass(&#039;loading&#039;);
	});
}
if($.browser.mozilla){
	$(&#039;#main&#039;).addClass(&#039;loading&#039;);
	$(window).load(function() {
		setTimeout ( &quot;removeLoading()&quot;, 100 );
	});
};</description>
		<content:encoded><![CDATA[<p>I dig the solution but I was still seeing a flicker when the content loaded so I modified your script a little. It works well for me. Input always appreciated.</p>
<p>function removeLoading() {<br />
	$(&#8216;#main&#8217;).animate({<br />
		opacity:1<br />
	}, 700, function() {<br />
		$(&#8216;#main&#8217;).removeClass(&#8216;loading&#8217;);<br />
	});<br />
}<br />
if($.browser.mozilla){<br />
	$(&#8216;#main&#8217;).addClass(&#8216;loading&#8217;);<br />
	$(window).load(function() {<br />
		setTimeout ( &#8220;removeLoading()&#8221;, 100 );<br />
	});<br />
};</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: @font-face: CSS3 basierte Schriftvielfalt &#171; am530: Der Blog von Axel Michel</title>
		<link>http://www.boxcarpress.com/us/blog/2009/11/05/css-font-face-flickering-in-firefox-somewhat-solved/comment-page-1/#comment-375</link>
		<dc:creator>@font-face: CSS3 basierte Schriftvielfalt &#171; am530: Der Blog von Axel Michel</dc:creator>
		<pubDate>Tue, 15 Jun 2010 13:33:59 +0000</pubDate>
		<guid isPermaLink="false">http://boxcarpress.com/us/blog/?p=633#comment-375</guid>
		<description>[...] Rendering die Dritte, das Verhalten beim Laden der Seite: Das Laden einer Schriftdatei kostet Zeit &#8211; wie lange, das ist abhÃ¤ngig von vielen Faktoren &#8211; aber es ist spÃ¼rbar und manchen FÃ¤llen sogar sichtbar. Firefox rendert den Text zunÃ¤chst mit einem Webstandard-Font. Erst wenn die individuelle Font-Datei vollstÃ¤ndig geladen ist, wechselt die Ansicht, die Seite &#8220;flackert&#8221;. Je grÃ¶ÃŸer die Unterscheidung zwischen dem nachgeladenen Font und dem websicheren Fallback, desto augenfÃ¤lliger wird das Ganze. Beim Webkit  hingegen werden die Inhalte erst eingeblendet, wenn die entsprechende Datei geladen ist. Steve Souders gibt in seinem Blog noch den wichtigen Hinweis, dass im Internet Explorer Ã¼berhaupt nichts passiert, bis die Schriftdatei fertig geladen ist &#8211; unter der Vorraussetzung, dass es vor der CSS Syntax einen SCRIPT Block gibt. Paul Irish beschreibt in seinem Artikel Fighting the @font-face FOUT eine JavaScript basierte LÃ¶sung, die das Verhalten vom Webkit nachbildet, um so den &#8220;flash of unstyled text&#8221; (FOUT) zu unterdrÃ¼cken, eine alternatives Szenario &#8211; in Kombination mit Jquery findet man bei BoxCar Press. [...]</description>
		<content:encoded><![CDATA[<p>[...] Rendering die Dritte, das Verhalten beim Laden der Seite: Das Laden einer Schriftdatei kostet Zeit &#8211; wie lange, das ist abhÃ¤ngig von vielen Faktoren &#8211; aber es ist spÃ¼rbar und manchen FÃ¤llen sogar sichtbar. Firefox rendert den Text zunÃ¤chst mit einem Webstandard-Font. Erst wenn die individuelle Font-Datei vollstÃ¤ndig geladen ist, wechselt die Ansicht, die Seite &#8220;flackert&#8221;. Je grÃ¶ÃŸer die Unterscheidung zwischen dem nachgeladenen Font und dem websicheren Fallback, desto augenfÃ¤lliger wird das Ganze. Beim Webkit  hingegen werden die Inhalte erst eingeblendet, wenn die entsprechende Datei geladen ist. Steve Souders gibt in seinem Blog noch den wichtigen Hinweis, dass im Internet Explorer Ã¼berhaupt nichts passiert, bis die Schriftdatei fertig geladen ist &#8211; unter der Vorraussetzung, dass es vor der CSS Syntax einen SCRIPT Block gibt. Paul Irish beschreibt in seinem Artikel Fighting the @font-face FOUT eine JavaScript basierte LÃ¶sung, die das Verhalten vom Webkit nachbildet, um so den &#8220;flash of unstyled text&#8221; (FOUT) zu unterdrÃ¼cken, eine alternatives Szenario &#8211; in Kombination mit Jquery findet man bei BoxCar Press. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul Irish</title>
		<link>http://www.boxcarpress.com/us/blog/2009/11/05/css-font-face-flickering-in-firefox-somewhat-solved/comment-page-1/#comment-116</link>
		<dc:creator>Paul Irish</dc:creator>
		<pubDate>Sat, 07 Nov 2009 21:27:31 +0000</pubDate>
		<guid isPermaLink="false">http://boxcarpress.com/us/blog/?p=633#comment-116</guid>
		<description>Thanks for sharing this Harold, good stuff - it&#039;s definitely an improvement on Typotheque&#039;s original code.
Your work inspired me to de-jquerify it, as well as clean up a few things:
&lt;a href=&quot;http://paulirish.com/2009/fighting-the-font-face-fout/#defeatthefout&quot; rel=&quot;nofollow&quot;&gt;Defeat the FOUT entirely&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Thanks for sharing this Harold, good stuff &#8211; it&#8217;s definitely an improvement on Typotheque&#8217;s original code.<br />
Your work inspired me to de-jquerify it, as well as clean up a few things:<br />
<a href="http://paulirish.com/2009/fighting-the-font-face-fout/#defeatthefout" rel="nofollow">Defeat the FOUT entirely</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Bilak</title>
		<link>http://www.boxcarpress.com/us/blog/2009/11/05/css-font-face-flickering-in-firefox-somewhat-solved/comment-page-1/#comment-115</link>
		<dc:creator>Peter Bilak</dc:creator>
		<pubDate>Sat, 07 Nov 2009 18:04:27 +0000</pubDate>
		<guid isPermaLink="false">http://boxcarpress.com/us/blog/?p=633#comment-115</guid>
		<description>Thanks Harold. I&#039;ve linked to this solution on our FOUT page. http://www.typotheque.com/webfonts/FOUC</description>
		<content:encoded><![CDATA[<p>Thanks Harold. I&#8217;ve linked to this solution on our FOUT page. <a href="http://www.typotheque.com/webfonts/FOUC" rel="nofollow">http://www.typotheque.com/webfonts/FOUC</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

