<?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: How to use custom jQuery animation queues</title>
	<atom:link href="http://cdmckay.org/blog/2010/06/22/how-to-use-custom-jquery-animation-queues/feed/" rel="self" type="application/rss+xml" />
	<link>http://cdmckay.org/blog/2010/06/22/how-to-use-custom-jquery-animation-queues/</link>
	<description>Programming and Game Development</description>
	<lastBuildDate>Tue, 07 Feb 2012 08:52:28 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: David</title>
		<link>http://cdmckay.org/blog/2010/06/22/how-to-use-custom-jquery-animation-queues/comment-page-1/#comment-668</link>
		<dc:creator>David</dc:creator>
		<pubDate>Thu, 04 Aug 2011 17:05:20 +0000</pubDate>
		<guid isPermaLink="false">http://cdmckay.org/blog/?p=1620#comment-668</guid>
		<description>Great explanation! It&#039;s all you need to use simultaneous asynchronous animations.

Thanks for such an incredible post.</description>
		<content:encoded><![CDATA[<p>Great explanation! It&#8217;s all you need to use simultaneous asynchronous animations.</p>
<p>Thanks for such an incredible post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: luca</title>
		<link>http://cdmckay.org/blog/2010/06/22/how-to-use-custom-jquery-animation-queues/comment-page-1/#comment-594</link>
		<dc:creator>luca</dc:creator>
		<pubDate>Fri, 07 Jan 2011 16:32:38 +0000</pubDate>
		<guid isPermaLink="false">http://cdmckay.org/blog/?p=1620#comment-594</guid>
		<description>thank you for this post. I&#039;m italian , so I don&#039;t found on web (italy) a post explained very well about jqueue method. you explian very well this method. great!!!</description>
		<content:encoded><![CDATA[<p>thank you for this post. I&#8217;m italian , so I don&#8217;t found on web (italy) a post explained very well about jqueue method. you explian very well this method. great!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: trend</title>
		<link>http://cdmckay.org/blog/2010/06/22/how-to-use-custom-jquery-animation-queues/comment-page-1/#comment-574</link>
		<dc:creator>trend</dc:creator>
		<pubDate>Mon, 13 Sep 2010 16:16:45 +0000</pubDate>
		<guid isPermaLink="false">http://cdmckay.org/blog/?p=1620#comment-574</guid>
		<description>I&#039;m sorry if I&#039;m not right but the code shown here won&#039;t work. I&#039;ve used jQuery 1.4. Here is the working example:
&lt;pre lang=&quot;javascript&quot;&gt;
$(&quot;#object&quot;)
    .queue(function(next) {
        $(this).animate({opacity: 0.5}, 
        {duration: 1000, queue: true});
        next();
    })
    .queue(function(next) {
        $(this).animate({top: &quot;-=40&quot;},
        {duration: 2000})
        next();	
    });			
});
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>I&#8217;m sorry if I&#8217;m not right but the code shown here won&#8217;t work. I&#8217;ve used jQuery 1.4. Here is the working example:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#object&quot;</span><span style="color: #009900;">&#41;</span>
    .<span style="color: #660066;">queue</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>next<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        $<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">animate</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>opacity<span style="color: #339933;">:</span> <span style="color: #CC0000;">0.5</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> 
        <span style="color: #009900;">&#123;</span>duration<span style="color: #339933;">:</span> <span style="color: #CC0000;">1000</span><span style="color: #339933;">,</span> queue<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">true</span><span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        next<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span>
    .<span style="color: #660066;">queue</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>next<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        $<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">animate</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>top<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;-=40&quot;</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span>
        <span style="color: #009900;">&#123;</span>duration<span style="color: #339933;">:</span> <span style="color: #CC0000;">2000</span><span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span>
        next<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>	
    <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>			
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

]]></content:encoded>
	</item>
	<item>
		<title>By: Arthur</title>
		<link>http://cdmckay.org/blog/2010/06/22/how-to-use-custom-jquery-animation-queues/comment-page-1/#comment-458</link>
		<dc:creator>Arthur</dc:creator>
		<pubDate>Tue, 29 Jun 2010 23:38:32 +0000</pubDate>
		<guid isPermaLink="false">http://cdmckay.org/blog/?p=1620#comment-458</guid>
		<description>Thanks for a great post! .queue() is really important in many cases and there is no much info on it in the web.</description>
		<content:encoded><![CDATA[<p>Thanks for a great post! .queue() is really important in many cases and there is no much info on it in the web.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tweets that mention How to use custom jQuery animation queues » Cameron McKay -- Topsy.com</title>
		<link>http://cdmckay.org/blog/2010/06/22/how-to-use-custom-jquery-animation-queues/comment-page-1/#comment-455</link>
		<dc:creator>Tweets that mention How to use custom jQuery animation queues » Cameron McKay -- Topsy.com</dc:creator>
		<pubDate>Tue, 22 Jun 2010 18:18:28 +0000</pubDate>
		<guid isPermaLink="false">http://cdmckay.org/blog/?p=1620#comment-455</guid>
		<description>[...] This post was mentioned on Twitter by Cameron McKay, so_white. so_white said: http://tinyurl.com/2cdvqdj How to use custom jQuery animation queues » Cameron McKay [...]</description>
		<content:encoded><![CDATA[<p>[...] This post was mentioned on Twitter by Cameron McKay, so_white. so_white said: <a href="http://tinyurl.com/2cdvqdj" >http://tinyurl.com/2cdvqdj</a> How to use custom jQuery animation queues » Cameron McKay [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

