<?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: Getting fancy with easing</title>
	<atom:link href="http://james.padolsey.com/javascript/getting-fancy-with-easing/feed/" rel="self" type="application/rss+xml" />
	<link>http://james.padolsey.com/javascript/getting-fancy-with-easing/</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Thu, 02 Feb 2012 18:03:26 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
	<item>
		<title>By: Easing in jQuery 1.4a2 &#8211; James Padolsey</title>
		<link>http://james.padolsey.com/javascript/getting-fancy-with-easing/comment-page-1/#comment-25873</link>
		<dc:creator>Easing in jQuery 1.4a2 &#8211; James Padolsey</dc:creator>
		<pubDate>Sat, 19 Dec 2009 21:50:46 +0000</pubDate>
		<guid isPermaLink="false">http://james.padolsey.com/?p=1234#comment-25873</guid>
		<description>[...] happy to write that my proposed change has been accepted into the jQuery &#8220;fx&#8221; core. I thought it worth explaining how this [...]</description>
		<content:encoded><![CDATA[<p>[...] happy to write that my proposed change has been accepted into the jQuery &#8220;fx&#8221; core. I thought it worth explaining how this [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Karl Swedberg</title>
		<link>http://james.padolsey.com/javascript/getting-fancy-with-easing/comment-page-1/#comment-24720</link>
		<dc:creator>Karl Swedberg</dc:creator>
		<pubDate>Sat, 21 Nov 2009 04:23:05 +0000</pubDate>
		<guid isPermaLink="false">http://james.padolsey.com/?p=1234#comment-24720</guid>
		<description>Ah. I guess I glossed over that part. I see your point.</description>
		<content:encoded><![CDATA[<p>Ah. I guess I glossed over that part. I see your point.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://james.padolsey.com/javascript/getting-fancy-with-easing/comment-page-1/#comment-24719</link>
		<dc:creator>James</dc:creator>
		<pubDate>Sat, 21 Nov 2009 03:26:27 +0000</pubDate>
		<guid isPermaLink="false">http://james.padolsey.com/?p=1234#comment-24719</guid>
		<description>@Cedric, potentially, yes, any changes to the fx core could have an effect, although I doubt they would. 

@Karl, I mentioned that as an alternative but two things make it slightly different from my solution:

- The animations are not in sync, one will begin slightly after the other. This isn&#039;t a big issue at all - but it could be noticeable in certain situations.&lt;/li&gt;

 - My mod has the effect of applying the per-property easing function on top of the default easing function for that animation. I didn&#039;t intend for this to happen originally, but I&#039;m not sure how to avoid it. You can see the difference here: http://james.padolsey.com/demos/jquery/easing/mod-vs-noqueue.html</description>
		<content:encoded><![CDATA[<p>@Cedric, potentially, yes, any changes to the fx core could have an effect, although I doubt they would. </p>
<p>@Karl, I mentioned that as an alternative but two things make it slightly different from my solution:</p>
<p>- The animations are not in sync, one will begin slightly after the other. This isn&#8217;t a big issue at all &#8211; but it could be noticeable in certain situations.</p>
<p> &#8211; My mod has the effect of applying the per-property easing function on top of the default easing function for that animation. I didn&#8217;t intend for this to happen originally, but I&#8217;m not sure how to avoid it. You can see the difference here: <a href="http://james.padolsey.com/demos/jquery/easing/mod-vs-noqueue.html">http://james.padolsey.com/demos/jquery/easing/mod-vs-noqueue.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Karl Swedberg</title>
		<link>http://james.padolsey.com/javascript/getting-fancy-with-easing/comment-page-1/#comment-24680</link>
		<dc:creator>Karl Swedberg</dc:creator>
		<pubDate>Fri, 20 Nov 2009 18:57:33 +0000</pubDate>
		<guid isPermaLink="false">http://james.padolsey.com/?p=1234#comment-24680</guid>
		<description>Actually, the first animate in my previous comment could be written as .animate({left: 500}, 1000) since &#039;swing&#039; is the default easing.</description>
		<content:encoded><![CDATA[<p>Actually, the first animate in my previous comment could be written as .animate({left: 500}, 1000) since &#8216;swing&#8217; is the default easing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Karl Swedberg</title>
		<link>http://james.padolsey.com/javascript/getting-fancy-with-easing/comment-page-1/#comment-24679</link>
		<dc:creator>Karl Swedberg</dc:creator>
		<pubDate>Fri, 20 Nov 2009 18:55:00 +0000</pubDate>
		<guid isPermaLink="false">http://james.padolsey.com/?p=1234#comment-24679</guid>
		<description>I like that syntax, James! A more verbose syntax that doesn&#039;t require modding anything would be this:

&lt;pre lang=&quot;javascript&quot;&gt;$(elem)
.animate(
  {left: 500}, 
  {duration: 1000, easing: &#039;swing&#039;})
.animate(
  {top: 500}, 
  {duration: 1000, queue: false, easing: &#039;easeOutBounce&#039;}
);&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>I like that syntax, James! A more verbose syntax that doesn&#8217;t require modding anything would be this:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">$<span class="br0">&#40;</span>elem<span class="br0">&#41;</span>
.<span class="me1">animate</span><span class="br0">&#40;</span>
  <span class="br0">&#123;</span>left<span class="sy0">:</span> <span class="nu0">500</span><span class="br0">&#125;</span><span class="sy0">,</span> 
  <span class="br0">&#123;</span>duration<span class="sy0">:</span> <span class="nu0">1000</span><span class="sy0">,</span> easing<span class="sy0">:</span> <span class="st0">'swing'</span><span class="br0">&#125;</span><span class="br0">&#41;</span>
.<span class="me1">animate</span><span class="br0">&#40;</span>
  <span class="br0">&#123;</span>top<span class="sy0">:</span> <span class="nu0">500</span><span class="br0">&#125;</span><span class="sy0">,</span> 
  <span class="br0">&#123;</span>duration<span class="sy0">:</span> <span class="nu0">1000</span><span class="sy0">,</span> queue<span class="sy0">:</span> <span class="kw2">false</span><span class="sy0">,</span> easing<span class="sy0">:</span> <span class="st0">'easeOutBounce'</span><span class="br0">&#125;</span>
<span class="br0">&#41;</span><span class="sy0">;</span></pre></div></div>

]]></content:encoded>
	</item>
	<item>
		<title>By: Cedric Dugas</title>
		<link>http://james.padolsey.com/javascript/getting-fancy-with-easing/comment-page-1/#comment-24664</link>
		<dc:creator>Cedric Dugas</dc:creator>
		<pubDate>Fri, 20 Nov 2009 15:43:07 +0000</pubDate>
		<guid isPermaLink="false">http://james.padolsey.com/?p=1234#comment-24664</guid>
		<description>Would be nice to have this feature in jQuery 1.4

As this is a modded animate, could changes in the jquery core create some bugs in your implementation?</description>
		<content:encoded><![CDATA[<p>Would be nice to have this feature in jQuery 1.4</p>
<p>As this is a modded animate, could changes in the jquery core create some bugs in your implementation?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

