<?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 transitions in Gecko</title>
	<atom:link href="http://www.bitstampede.com/2010/02/22/css-transitions-in-gecko/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bitstampede.com/2010/02/22/css-transitions-in-gecko/</link>
	<description>Bits on the rampage: Eric Shepherd's blog.</description>
	<lastBuildDate>Wed, 01 Feb 2012 14:15:55 -0500</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Mozilla Firefox, enfin CSS Transitions &#124; Un développement web</title>
		<link>http://www.bitstampede.com/2010/02/22/css-transitions-in-gecko/comment-page-1/#comment-84756</link>
		<dc:creator>Mozilla Firefox, enfin CSS Transitions &#124; Un développement web</dc:creator>
		<pubDate>Thu, 11 Mar 2010 04:56:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.bitstampede.com/?p=1508#comment-84756</guid>
		<description>[...] voie Twitter je découvre que Firefox 3.7 (la version pre-alpha2) dispose déjà de CSS Transtions. Le système avec lequel grâce à des sentences CSS nous pouvons appliquer un mouvement à des [...]</description>
		<content:encoded><![CDATA[<p>[...] voie Twitter je découvre que Firefox 3.7 (la version pre-alpha2) dispose déjà de CSS Transtions. Le système avec lequel grâce à des sentences CSS nous pouvons appliquer un mouvement à des [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mozilla Firefox, finally CSS Transitions &#124; Web development</title>
		<link>http://www.bitstampede.com/2010/02/22/css-transitions-in-gecko/comment-page-1/#comment-84751</link>
		<dc:creator>Mozilla Firefox, finally CSS Transitions &#124; Web development</dc:creator>
		<pubDate>Tue, 09 Mar 2010 17:55:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.bitstampede.com/?p=1508#comment-84751</guid>
		<description>[...] Twitter I discover that Firefox 3.7 (the version pre-alpha2) already arranges of CSS Transtions. The system with which by means of judgments CSS we can apply movement to elements HTML of our [...]</description>
		<content:encoded><![CDATA[<p>[...] Twitter I discover that Firefox 3.7 (the version pre-alpha2) already arranges of CSS Transtions. The system with which by means of judgments CSS we can apply movement to elements HTML of our [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mozilla Firefox, ? ????? ?????? CSS Transitions &#124; Veb razvitije</title>
		<link>http://www.bitstampede.com/2010/02/22/css-transitions-in-gecko/comment-page-1/#comment-84750</link>
		<dc:creator>Mozilla Firefox, ? ????? ?????? CSS Transitions &#124; Veb razvitije</dc:creator>
		<pubDate>Tue, 09 Mar 2010 16:00:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.bitstampede.com/?p=1508#comment-84750</guid>
		<description>[...] Twitter ? ????????, ??? Firefox 3.7 (?????? pre-alpha2) ??? ????????? CSS Transtions. ???????, ? ??????? ??????????? ??????? CSS ?? ????? [...]</description>
		<content:encoded><![CDATA[<p>[...] Twitter ? ????????, ??? Firefox 3.7 (?????? pre-alpha2) ??? ????????? CSS Transtions. ???????, ? ??????? ??????????? ??????? CSS ?? ????? [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mozilla Firefox endlich CSS Transitions &#124; Web-Entwicklung</title>
		<link>http://www.bitstampede.com/2010/02/22/css-transitions-in-gecko/comment-page-1/#comment-84748</link>
		<dc:creator>Mozilla Firefox endlich CSS Transitions &#124; Web-Entwicklung</dc:creator>
		<pubDate>Tue, 09 Mar 2010 06:32:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.bitstampede.com/?p=1508#comment-84748</guid>
		<description>[...] Twitter decke ich auf, dass Firefox 3.7 (die Version pre-alpha2) schon von CSS Transtions anordnet. Das System, mit dem wir mittels der Urteile CSS Bewegung auf Elemente HTML unserer Seite anwenden [...]</description>
		<content:encoded><![CDATA[<p>[...] Twitter decke ich auf, dass Firefox 3.7 (die Version pre-alpha2) schon von CSS Transtions anordnet. Das System, mit dem wir mittels der Urteile CSS Bewegung auf Elemente HTML unserer Seite anwenden [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sylvain Pasche</title>
		<link>http://www.bitstampede.com/2010/02/22/css-transitions-in-gecko/comment-page-1/#comment-84716</link>
		<dc:creator>Sylvain Pasche</dc:creator>
		<pubDate>Tue, 23 Feb 2010 23:45:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.bitstampede.com/?p=1508#comment-84716</guid>
		<description>Great work. I have a suggestion for the samples, which I think should improve readability/maintainability of the CSS. Put the declarations that are common to several rulesets in a dedicated ruleset with a grouping selector. That should be easier to understand with an example:
Instead of
&lt;code&gt;
.menuButton {
  position: relative;
  -moz-transition-property: background-color, color;
  -moz-transition-duration: 1s;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-property: background-color, color;
  -webkit-transition-duration: 1s;
  -o-transition-property: background-color, color;
  -o-transition-duration: 1s;
  text-align: left;
  background-color: grey;
  left: 5px;
  top: 5px;
  height: 26px;
  color: white;
  border-color: black;
  font-family: sans-serif;
  font-size: 20px;
  text-decoration: none;
  -moz-box-shadow: 2px 2px 1px black;
  padding: 2px 4px;
  border: solid 1px black;
}

.menuButton:hover {
  position: relative;
  -moz-transition-property: background-color, color;
  -moz-transition-duration: 1s;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-property: background-color, color;
  -webkit-transition-duration: 1s;
  -o-transition-property: background-color, color;
  -o-transition-duration: 1s;
  background-color:white;
  color:black;
  -moz-box-shadow: 2px 2px 1px black;
}
&lt;/code&gt;
You would have
&lt;code&gt;
.menuButton, .menuButton:hover {
  position: relative;
  -moz-transition-property: background-color, color;
  -moz-transition-duration: 1s;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-property: background-color, color;
  -webkit-transition-duration: 1s;
  -o-transition-property: background-color, color;
  -o-transition-duration: 1s;
  -moz-box-shadow: 2px 2px 1px black;
}

.menuButton {
  text-align: left;
  background-color: grey;
  left: 5px;
  top: 5px;
  height: 26px;
  color: white;
  border-color: black;
  font-family: sans-serif;
  font-size: 20px;
  text-decoration: none;
  padding: 2px 4px;
  border: solid 1px black;
}

.menuButton:hover {
  background-color:white;
  color:black;
}
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Great work. I have a suggestion for the samples, which I think should improve readability/maintainability of the CSS. Put the declarations that are common to several rulesets in a dedicated ruleset with a grouping selector. That should be easier to understand with an example:<br />
Instead of<br />
<code><br />
.menuButton {<br />
  position: relative;<br />
  -moz-transition-property: background-color, color;<br />
  -moz-transition-duration: 1s;<br />
  -moz-transition-timing-function: ease-out;<br />
  -webkit-transition-property: background-color, color;<br />
  -webkit-transition-duration: 1s;<br />
  -o-transition-property: background-color, color;<br />
  -o-transition-duration: 1s;<br />
  text-align: left;<br />
  background-color: grey;<br />
  left: 5px;<br />
  top: 5px;<br />
  height: 26px;<br />
  color: white;<br />
  border-color: black;<br />
  font-family: sans-serif;<br />
  font-size: 20px;<br />
  text-decoration: none;<br />
  -moz-box-shadow: 2px 2px 1px black;<br />
  padding: 2px 4px;<br />
  border: solid 1px black;<br />
}</p>
<p>.menuButton:hover {<br />
  position: relative;<br />
  -moz-transition-property: background-color, color;<br />
  -moz-transition-duration: 1s;<br />
  -moz-transition-timing-function: ease-out;<br />
  -webkit-transition-property: background-color, color;<br />
  -webkit-transition-duration: 1s;<br />
  -o-transition-property: background-color, color;<br />
  -o-transition-duration: 1s;<br />
  background-color:white;<br />
  color:black;<br />
  -moz-box-shadow: 2px 2px 1px black;<br />
}<br />
</code><br />
You would have<br />
<code><br />
.menuButton, .menuButton:hover {<br />
  position: relative;<br />
  -moz-transition-property: background-color, color;<br />
  -moz-transition-duration: 1s;<br />
  -moz-transition-timing-function: ease-out;<br />
  -webkit-transition-property: background-color, color;<br />
  -webkit-transition-duration: 1s;<br />
  -o-transition-property: background-color, color;<br />
  -o-transition-duration: 1s;<br />
  -moz-box-shadow: 2px 2px 1px black;<br />
}</p>
<p>.menuButton {<br />
  text-align: left;<br />
  background-color: grey;<br />
  left: 5px;<br />
  top: 5px;<br />
  height: 26px;<br />
  color: white;<br />
  border-color: black;<br />
  font-family: sans-serif;<br />
  font-size: 20px;<br />
  text-decoration: none;<br />
  padding: 2px 4px;<br />
  border: solid 1px black;<br />
}</p>
<p>.menuButton:hover {<br />
  background-color:white;<br />
  color:black;<br />
}<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sheppy</title>
		<link>http://www.bitstampede.com/2010/02/22/css-transitions-in-gecko/comment-page-1/#comment-84713</link>
		<dc:creator>sheppy</dc:creator>
		<pubDate>Tue, 23 Feb 2010 17:29:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.bitstampede.com/?p=1508#comment-84713</guid>
		<description>Magne: Yes, once Firefox supports CSS animations, that last sample will be doable without &quot;cheating&quot; and using JavaScript. :)</description>
		<content:encoded><![CDATA[<p>Magne: Yes, once Firefox supports CSS animations, that last sample will be doable without &#8220;cheating&#8221; and using JavaScript. :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: &#187; Easy easing gets easier; hard easing stays hard My Green Life</title>
		<link>http://www.bitstampede.com/2010/02/22/css-transitions-in-gecko/comment-page-1/#comment-84712</link>
		<dc:creator>&#187; Easy easing gets easier; hard easing stays hard My Green Life</dc:creator>
		<pubDate>Tue, 23 Feb 2010 15:53:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.bitstampede.com/?p=1508#comment-84712</guid>
		<description>[...] been experimentally implemented in Opera, Webkit (Safari, Chrome and Konqueror amonst others) and in nightly builds of Firefox (with documentation on the ever useful devmo). CSS transitions provide a declarative way to animate [...]</description>
		<content:encoded><![CDATA[<p>[...] been experimentally implemented in Opera, Webkit (Safari, Chrome and Konqueror amonst others) and in nightly builds of Firefox (with documentation on the ever useful devmo). CSS transitions provide a declarative way to animate [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mozilla Firefox, por fín CSS Transitions &#124; aNieto2K</title>
		<link>http://www.bitstampede.com/2010/02/22/css-transitions-in-gecko/comment-page-1/#comment-84711</link>
		<dc:creator>Mozilla Firefox, por fín CSS Transitions &#124; aNieto2K</dc:creator>
		<pubDate>Tue, 23 Feb 2010 10:11:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.bitstampede.com/?p=1508#comment-84711</guid>
		<description>[...] Twitter descubro que Firefox 3.7 (la versión pre-alpha2) ya dispone de CSS Transtions. El sistema con el cual mediante sentencias CSS podemos aplicar movimiento a elementos HTML de [...]</description>
		<content:encoded><![CDATA[<p>[...] Twitter descubro que Firefox 3.7 (la versión pre-alpha2) ya dispone de CSS Transtions. El sistema con el cual mediante sentencias CSS podemos aplicar movimiento a elementos HTML de [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Magne Andersson</title>
		<link>http://www.bitstampede.com/2010/02/22/css-transitions-in-gecko/comment-page-1/#comment-84710</link>
		<dc:creator>Magne Andersson</dc:creator>
		<pubDate>Tue, 23 Feb 2010 08:20:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.bitstampede.com/?p=1508#comment-84710</guid>
		<description>Looking good, I&#039;ve tried many things myself and have usually gotten a nice result. I feel that it is a bit wrong to involve JavaScript at the last example though, as that is replacing what CSS Animation is meant to do, which only Webkit browsers support so far. &quot;Cheating&quot; with JavaScript is OK, as long as you don&#039;t support CSS Animation, but I wouldn&#039;t recommend doing it when CSS Animation is available.</description>
		<content:encoded><![CDATA[<p>Looking good, I&#8217;ve tried many things myself and have usually gotten a nice result. I feel that it is a bit wrong to involve JavaScript at the last example though, as that is replacing what CSS Animation is meant to do, which only Webkit browsers support so far. &#8220;Cheating&#8221; with JavaScript is OK, as long as you don&#8217;t support CSS Animation, but I wouldn&#8217;t recommend doing it when CSS Animation is available.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

