<?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: Émile: Stand-alone CSS animation JavaScript mini-framework</title>
	<atom:link href="http://ajaxian.com/archives/emile-stand-alone-css-animation-javascript-mini-framework/feed" rel="self" type="application/rss+xml" />
	<link>http://ajaxian.com/archives/emile-stand-alone-css-animation-javascript-mini-framework</link>
	<description>Cleaning up the web with Ajax</description>
	<lastBuildDate>Thu, 09 Feb 2012 06:55:33 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
	<item>
		<title>By: ducminh</title>
		<link>http://ajaxian.com/archives/emile-stand-alone-css-animation-javascript-mini-framework/comment-page-1#comment-276759</link>
		<dc:creator>ducminh</dc:creator>
		<pubDate>Sun, 22 Nov 2009 06:29:37 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=7887#comment-276759</guid>
		<description>It base on old technology . still some errors , not perfect</description>
		<content:encoded><![CDATA[<p>It base on old technology . still some errors , not perfect</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rasmusfl0e</title>
		<link>http://ajaxian.com/archives/emile-stand-alone-css-animation-javascript-mini-framework/comment-page-1#comment-276592</link>
		<dc:creator>rasmusfl0e</dc:creator>
		<pubDate>Wed, 11 Nov 2009 22:29:39 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=7887#comment-276592</guid>
		<description>Hmmm, seems you can&#039;t expect people to:

1) read the article
2) read the comments
3) refrain from plugging their own stuff

lol</description>
		<content:encoded><![CDATA[<p>Hmmm, seems you can&#8217;t expect people to:</p>
<p>1) read the article<br />
2) read the comments<br />
3) refrain from plugging their own stuff</p>
<p>lol</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mattprokes</title>
		<link>http://ajaxian.com/archives/emile-stand-alone-css-animation-javascript-mini-framework/comment-page-1#comment-276588</link>
		<dc:creator>mattprokes</dc:creator>
		<pubDate>Wed, 11 Nov 2009 17:58:13 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=7887#comment-276588</guid>
		<description>Been there, done that (even better then whats here).... http://mattprokes.com/2009/02/08/how-to-extend-css-add-custom-css-configuration-to-your-webapp-cssplusplusjs/</description>
		<content:encoded><![CDATA[<p>Been there, done that (even better then whats here)&#8230;. <a href="http://mattprokes.com/2009/02/08/how-to-extend-css-add-custom-css-configuration-to-your-webapp-cssplusplusjs/" rel="nofollow">http://mattprokes.com/2009/02/08/how-to-extend-css-add-custom-css-configuration-to-your-webapp-cssplusplusjs/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jon60</title>
		<link>http://ajaxian.com/archives/emile-stand-alone-css-animation-javascript-mini-framework/comment-page-1#comment-276575</link>
		<dc:creator>jon60</dc:creator>
		<pubDate>Wed, 11 Nov 2009 05:47:59 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=7887#comment-276575</guid>
		<description>IE7 chokes on &lt;code&gt;v.push(parseInt(c.substr(1+j*2,2), 16))&lt;/code&gt; in the &lt;em&gt;color&lt;/em&gt; function as &lt;em&gt;c&lt;/em&gt; does not get defined when processing colors like &lt;em&gt;&quot;#ffff99&quot;&lt;/em&gt;.

Changing this to &lt;code&gt;v.push(parseInt(arguments[i].substr(1+j*2,2), 16))&lt;/code&gt; looks to resolve this issue.</description>
		<content:encoded><![CDATA[<p>IE7 chokes on <code>v.push(parseInt(c.substr(1+j*2,2), 16))</code> in the <em>color</em> function as <em>c</em> does not get defined when processing colors like <em>&#8220;#ffff99&#8243;</em>.</p>
<p>Changing this to <code>v.push(parseInt(arguments[i].substr(1+j*2,2), 16))</code> looks to resolve this issue.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rasmusfl0e</title>
		<link>http://ajaxian.com/archives/emile-stand-alone-css-animation-javascript-mini-framework/comment-page-1#comment-276456</link>
		<dc:creator>rasmusfl0e</dc:creator>
		<pubDate>Tue, 10 Nov 2009 06:05:15 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=7887#comment-276456</guid>
		<description>I love this kind of minimalism. A lot of goodness packed into so little code.

But a couple of things that seem odd:

In the color function in part that is supposed to handle hex color codes - the &lt;em&gt;c&lt;/em&gt; variable is only declared but never defined. That means the following line will fail: 
&lt;code&gt;
... while(j--) v.push(parseInt(c.substr(1+j*2,2), 16));
&lt;/code&gt;
...But the line will only ever be executed if a browser returns a hex color value through getComputedStyle/currentStyle - maybe the line is redundant?

And the following would be shorter and equally valid I think(?):
&lt;code&gt;
... comp = el.currentStyle &#124;&#124; getComputedStyle(el, null),
&lt;/code&gt;
instead of:
&lt;code&gt;
comp = el.currentStyle ? el.currentStyle : getComputedStyle(el, null),
&lt;/code&gt;

Finally &lt;em&gt;opacity&lt;/em&gt; isn&#039;t supported by IE - vanilla flavour anyways - so leaving it in might as well open up to rgba colors? (Supported by roughly the same browsers).

Just my 2 cents ;P</description>
		<content:encoded><![CDATA[<p>I love this kind of minimalism. A lot of goodness packed into so little code.</p>
<p>But a couple of things that seem odd:</p>
<p>In the color function in part that is supposed to handle hex color codes &#8211; the <em>c</em> variable is only declared but never defined. That means the following line will fail:<br />
<code><br />
... while(j--) v.push(parseInt(c.substr(1+j*2,2), 16));<br />
</code><br />
&#8230;But the line will only ever be executed if a browser returns a hex color value through getComputedStyle/currentStyle &#8211; maybe the line is redundant?</p>
<p>And the following would be shorter and equally valid I think(?):<br />
<code><br />
... comp = el.currentStyle || getComputedStyle(el, null),<br />
</code><br />
instead of:<br />
<code><br />
comp = el.currentStyle ? el.currentStyle : getComputedStyle(el, null),<br />
</code></p>
<p>Finally <em>opacity</em> isn&#8217;t supported by IE &#8211; vanilla flavour anyways &#8211; so leaving it in might as well open up to rgba colors? (Supported by roughly the same browsers).</p>
<p>Just my 2 cents ;P</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SilentLennie</title>
		<link>http://ajaxian.com/archives/emile-stand-alone-css-animation-javascript-mini-framework/comment-page-1#comment-276389</link>
		<dc:creator>SilentLennie</dc:creator>
		<pubDate>Tue, 10 Nov 2009 00:45:04 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=7887#comment-276389</guid>
		<description>@kimoja see the presentation  PDF. It&#039;s pretty self explanatory, If it&#039;s not, maybe this library is not for you.</description>
		<content:encoded><![CDATA[<p>@kimoja see the presentation  PDF. It&#8217;s pretty self explanatory, If it&#8217;s not, maybe this library is not for you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kimoja</title>
		<link>http://ajaxian.com/archives/emile-stand-alone-css-animation-javascript-mini-framework/comment-page-1#comment-276387</link>
		<dc:creator>Kimoja</dc:creator>
		<pubDate>Mon, 09 Nov 2009 21:57:19 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=7887#comment-276387</guid>
		<description>I like the concept.
Useful for those who want nothing superfluous in their script (not like a framwork ...), the code is simple and easily editable.
gg ;)</description>
		<content:encoded><![CDATA[<p>I like the concept.<br />
Useful for those who want nothing superfluous in their script (not like a framwork &#8230;), the code is simple and easily editable.<br />
gg ;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aurora</title>
		<link>http://ajaxian.com/archives/emile-stand-alone-css-animation-javascript-mini-framework/comment-page-1#comment-276386</link>
		<dc:creator>aurora</dc:creator>
		<pubDate>Mon, 09 Nov 2009 15:13:52 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=7887#comment-276386</guid>
		<description>examples anywhere ... ?</description>
		<content:encoded><![CDATA[<p>examples anywhere &#8230; ?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

