<?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: CSS3 Progress Bars</title>
	<atom:link href="http://css-tricks.com/css3-progress-bars/feed/" rel="self" type="application/rss+xml" />
	<link>http://css-tricks.com/css3-progress-bars/</link>
	<description>Tips, Tricks, and Techniques on using Cascading Style Sheets.</description>
	<lastBuildDate>Fri, 24 May 2013 22:29:25 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Brett Widmann</title>
		<link>http://css-tricks.com/css3-progress-bars/#comment-91615</link>
		<dc:creator>Brett Widmann</dc:creator>
		<pubDate>Fri, 22 Apr 2011 00:59:29 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=8518#comment-91615</guid>
		<description><![CDATA[I really like how this looks and works! Thank you.]]></description>
		<content:encoded><![CDATA[<p>I really like how this looks and works! Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Some guy</title>
		<link>http://css-tricks.com/css3-progress-bars/#comment-91536</link>
		<dc:creator>Some guy</dc:creator>
		<pubDate>Wed, 20 Apr 2011 10:53:52 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=8518#comment-91536</guid>
		<description><![CDATA[Looks bad in Firefox 3 however.]]></description>
		<content:encoded><![CDATA[<p>Looks bad in Firefox 3 however.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: brum</title>
		<link>http://css-tricks.com/css3-progress-bars/#comment-91478</link>
		<dc:creator>brum</dc:creator>
		<pubDate>Tue, 19 Apr 2011 14:06:10 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=8518#comment-91478</guid>
		<description><![CDATA[Really great job! And thanks for sharing...]]></description>
		<content:encoded><![CDATA[<p>Really great job! And thanks for sharing&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Boris</title>
		<link>http://css-tricks.com/css3-progress-bars/#comment-90281</link>
		<dc:creator>Boris</dc:creator>
		<pubDate>Wed, 16 Mar 2011 11:36:17 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=8518#comment-90281</guid>
		<description><![CDATA[I&#039;ve adjusted the code somewhat. I&#039;ve added a span to the markup that holds the percentage.

&lt;code&gt;
&lt;div class=&quot;meter-wrapper&quot;&gt;    
    &lt;div class=&quot;meter&quot;&gt;&lt;span style=&quot;width:35%&quot;&gt;&lt;/span&gt;&lt;/div&gt;
    &lt;span class=&quot;progress&quot;&gt;35%&lt;/span&gt;
&lt;/div&gt;
&lt;/code&gt;

The progress span gets hidden on pageload and is then faded in when the bar animation is finished.

I also needed the progress bar to resize with the container when the browser gets resized.  jQuery&#039;s width() only returns px, so I needed a little workaround.

&lt;code&gt;
jQuery(&#039;.meter-wrapper .progress&#039;).hide();
jQuery(&quot;.meter &gt; span&quot;).each(function() {
	var w = ( 100 * parseFloat(jQuery(this).css(&#039;width&#039;)) / parseFloat(jQuery(this).parent().css(&#039;width&#039;)) ) + &#039;%&#039;;
	jQuery(this).width(&#039;0%&#039;).animate({width: w}, 1200, function() { jQuery(&#039;.meter-wrapper .progress&#039;).fadeIn(); } );
});
&lt;/code&gt;]]></description>
		<content:encoded><![CDATA[<p>I&#8217;ve adjusted the code somewhat. I&#8217;ve added a span to the markup that holds the percentage.</p>
<p><code><br />
&lt;div class="meter-wrapper"&gt;<br />
    &lt;div class="meter"&gt;&lt;span style="width:35%"&gt;&lt;/span&gt;&lt;/div&gt;<br />
    &lt;span class="progress"&gt;35%&lt;/span&gt;<br />
&lt;/div&gt;<br />
</code></p>
<p>The progress span gets hidden on pageload and is then faded in when the bar animation is finished.</p>
<p>I also needed the progress bar to resize with the container when the browser gets resized.  jQuery&#8217;s width() only returns px, so I needed a little workaround.</p>
<p><code><br />
jQuery('.meter-wrapper .progress').hide();<br />
jQuery(".meter &gt; span").each(function() {<br />
	var w = ( 100 * parseFloat(jQuery(this).css('width')) / parseFloat(jQuery(this).parent().css('width')) ) + '%';<br />
	jQuery(this).width('0%').animate({width: w}, 1200, function() { jQuery('.meter-wrapper .progress').fadeIn(); } );<br />
});<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Apartmani Soko Banja</title>
		<link>http://css-tricks.com/css3-progress-bars/#comment-89971</link>
		<dc:creator>Apartmani Soko Banja</dc:creator>
		<pubDate>Tue, 08 Mar 2011 09:07:33 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=8518#comment-89971</guid>
		<description><![CDATA[Excellent job done. Can easily be used]]></description>
		<content:encoded><![CDATA[<p>Excellent job done. Can easily be used</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew</title>
		<link>http://css-tricks.com/css3-progress-bars/#comment-89941</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Mon, 07 Mar 2011 07:22:39 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=8518#comment-89941</guid>
		<description><![CDATA[Very cool but you gotta have the animation running the other way man! That way the progress bar looks like it&#039;s making more progress than it is! This way it looks like it&#039;s slower.]]></description>
		<content:encoded><![CDATA[<p>Very cool but you gotta have the animation running the other way man! That way the progress bar looks like it&#8217;s making more progress than it is! This way it looks like it&#8217;s slower.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: college classifieds</title>
		<link>http://css-tricks.com/css3-progress-bars/#comment-89931</link>
		<dc:creator>college classifieds</dc:creator>
		<pubDate>Mon, 07 Mar 2011 02:54:49 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=8518#comment-89931</guid>
		<description><![CDATA[While all of this stuff is super cool, they are not going to be used until CSS3 and HTML5 have become a standard.  I wish we cool jump ahead a few years in terms of HTML standards....too many dang people are still running IE7/IE8.  AGGGHH]]></description>
		<content:encoded><![CDATA[<p>While all of this stuff is super cool, they are not going to be used until CSS3 and HTML5 have become a standard.  I wish we cool jump ahead a few years in terms of HTML standards&#8230;.too many dang people are still running IE7/IE8.  AGGGHH</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: EstherH</title>
		<link>http://css-tricks.com/css3-progress-bars/#comment-89906</link>
		<dc:creator>EstherH</dc:creator>
		<pubDate>Sun, 06 Mar 2011 08:19:36 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=8518#comment-89906</guid>
		<description><![CDATA[Chrome has a bug when you use an &quot;inset&quot; box-shadow along with a border-radius.  see http://code.google.com/p/chromium/issues/detail?id=128

anyone know a workaround for this?]]></description>
		<content:encoded><![CDATA[<p>Chrome has a bug when you use an &#8220;inset&#8221; box-shadow along with a border-radius.  see <a href="http://code.google.com/p/chromium/issues/detail?id=128" rel="nofollow">http://code.google.com/p/chromium/issues/detail?id=128</a></p>
<p>anyone know a workaround for this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jesús</title>
		<link>http://css-tricks.com/css3-progress-bars/#comment-89902</link>
		<dc:creator>Jesús</dc:creator>
		<pubDate>Sat, 05 Mar 2011 22:28:35 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=8518#comment-89902</guid>
		<description><![CDATA[It is good news for my wordpress (style)]]></description>
		<content:encoded><![CDATA[<p>It is good news for my wordpress (style)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ali Bahrami</title>
		<link>http://css-tricks.com/css3-progress-bars/#comment-89678</link>
		<dc:creator>Ali Bahrami</dc:creator>
		<pubDate>Wed, 02 Mar 2011 19:43:34 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=8518#comment-89678</guid>
		<description><![CDATA[OMG,
That&#039;s awesome , Chris.

I thought I know a little about CSS but I guess I know nothing about it :P

Wish you better jobs ^_^]]></description>
		<content:encoded><![CDATA[<p>OMG,<br />
That&#8217;s awesome , Chris.</p>
<p>I thought I know a little about CSS but I guess I know nothing about it :P</p>
<p>Wish you better jobs ^_^</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk (User agent is rejected)
Content Delivery Network via cdn.css-tricks.com

 Served from: css-tricks.com @ 2013-05-24 21:56:23 by W3 Total Cache -->