<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Mohammed CHERIFI &#187; animate</title>
	<atom:link href="http://www.mcherifi.org/tag/animate/feed" rel="self" type="application/rss+xml" />
	<link>http://www.mcherifi.org</link>
	<description>Another Web Developper Blog!</description>
	<lastBuildDate>Tue, 31 Jan 2012 18:42:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Enchainer plusieurs animations avec jQuery</title>
		<link>http://www.mcherifi.org/tutoriaux/enchainer-plusieurs-animations-avec-jquery.html</link>
		<comments>http://www.mcherifi.org/tutoriaux/enchainer-plusieurs-animations-avec-jquery.html#comments</comments>
		<pubDate>Wed, 23 Sep 2009 23:08:07 +0000</pubDate>
		<dc:creator>Mohammed CHERIFI</dc:creator>
				<category><![CDATA[Tutoriaux]]></category>
		<category><![CDATA[animate]]></category>
		<category><![CDATA[chain animation]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.mcherifi.org/?p=176</guid>
		<description><![CDATA[TweetBonjour à tous!
Savez vous qu&#8217;avec jQuery il est possible d&#8217;enchainer plusieurs animations à la fois dans une seule instruction? alors la réponse est OUI, on peut même aller plus loin avec un peu d&#8217;imagination et c&#8217;est vraiment très facile à mettre en œuvre! En fait chaque méthode dans jQuery retourne l’objet lui-même, ainsi on peut [...]]]></description>
			<content:encoded><![CDATA[<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.mcherifi.org/tutoriaux/enchainer-plusieurs-animations-avec-jquery.html" data-text="Enchainer plusieurs animations avec jQuery" data-count="horizontal">Tweet</a><p>Bonjour à tous!</p>
<p>Savez vous qu&#8217;avec jQuery il est possible d&#8217;enchainer plusieurs animations à la fois dans une seule instruction? alors la réponse est OUI, on peut même aller plus loin avec un peu d&#8217;imagination et c&#8217;est vraiment très facile à mettre en œuvre! En fait chaque méthode dans jQuery retourne l’objet lui-même, ainsi on peut enchaîner à une autre méthode :</p>
<p>Exemple :</p>
<pre class="brush: html">
&lt;script type=&quot;text/javascript&quot;&gt;// &lt;![CDATA[
jQuery(window).ready(function(){
$(&#039;#testcode1&#039;).click(function(){
$(&#039;#mondiv&#039;).animate({width:&#039;200px&#039;, fontSize: &quot;18px&quot;, borderWidth:&#039;3px&#039;, marginLeft:&#039;100px&#039;, opacity:&#039;0.8&#039;, padding:&#039;10px&#039;},2000)
.animate({width:&#039;120px&#039;, marginLeft:&#039;0&#039;, fontSize: &quot;12px&quot;, borderWidth:0, opacity:&#039;1&#039;, padding:&#039;0&#039;},2000);
return false;
});
});
// ]]&gt;&lt;/script&gt;
&lt;a id=&quot;testcode1&quot;&gt;Tester le code&lt;/a&gt;
&lt;div id=&quot;mondiv&quot; style=&quot;border: 1px solid #ffffff; background: #077f2e none repeat scroll 0% 0%; width: 120px; height: 120px;&quot;&gt;Un div de test&lt;/div&gt;
</pre>
<p><script type="text/javascript">// <![CDATA[
jQuery(window).ready(function(){
$('#testcode1').click(function(){
$('#mondiv').animate({width:'200px', fontSize: "18px", borderWidth:'3px', marginLeft:'100px', opacity:'0.8', padding:'10px'},2000)
.animate({width:'120px', marginLeft:'0', fontSize: "12px", borderWidth:0, opacity:'1', padding:'0'},2000);
return false;
});
});
// ]]&gt;</script><br />
<strong>Resultat</strong><br />
<a id="testcode1">Tester le code</a></p>
<div id="mondiv" style="border: 1px solid #ffffff; background: #077f2e none repeat scroll 0% 0%; width: 120px; height: 120px;">Un div de test</div>
<p>La fonction animate() est une fonction native en jQuery, elle permet d&#8217;animer les propriétés CSS d&#8217;un objet jQuery dans une durée bien déterminée , la syntaxe comme dans l&#8217;exemple si-dessus est très simple!</p>
<p>On peut animer une seule, ou plusieurs propriétés CSS à la fois! Par exemple pour animer la largeur d&#8217;un div ayant l&#8217;id test et la mettre à 300px sur 2secondes le code sera :</p>
<pre class="brush: javascript">
$(&#039;#test&#039;).animate({width&#039;:&#039;300px&#039;},2000);
</pre>
<p>Ainsi on peut enchainer autant qu&#8217;on veux, le reste dépend de votre imagination ^^, à noter que la durée de l&#8217;animation (2000) est en millisecondes, d&#8217;où 1 seconde = 1000 ms</p>
<p><strong>Un autre Exemple d&#8217;enchainement d&#8217;animation</strong></p>
<p>Dans cette exemple, on va animer un div ayant un arrière plan rouge, et une image d&#8217;étoile pour construire le drapeau du maroc à la fin de l&#8217;animation</p>
<p><a href="/data/jquery/animation/animate.html" target="blank">Voir le resultat</a></p>
<p><strong>Code</strong></p>
<pre class="brush: html">
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot; &quot;http://www.w3.org/TR/html4/loose.dtd&quot;&gt;
&lt;html&gt;
&lt;head&gt;
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=ISO-8859-1&quot;&gt;
&lt;script src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
&lt;!-- 	www.mcherifi.org --&gt;
	jQuery(window).ready(function(){
		$(&#039;#animationlink&#039;).click(function(){
			$(&#039;#mondiv&#039;).animate({left:&#039;400px&#039;, opacity:&#039;0.3&#039;, width:&#039;40px&#039;, height:&#039;70px&#039;, borderWidth:&#039;20px&#039;}, 1500)
				.animate({top:&#039;300px&#039;, opacity:&#039;0.8&#039;, left:&#039;100px&#039;, width:&#039;70px&#039;, height:&#039;70px&#039;, borderWidth:&#039;7px&#039;}, 1500)
				.animate({top:&#039;160px&#039;, opacity:&#039;0.4&#039;, left:&#039;500px&#039;, width:&#039;170px&#039;, borderWidth:&#039;3px&#039;}, 1200)
				.animate({top:0,  opacity:&#039;0.2&#039;,  left:0, width:&#039;200px&#039;, height:&#039;200px&#039;, borderWidth:&#039;1px&#039;}, 700)
				.animate({opacity:&#039;1&#039;, borderWidth:&#039;2px&#039;}, 1000);

			$(&#039;#monetoile&#039;).css(&#039;opacity&#039;, 0).animate({left:&#039;500px&#039;, top:&#039;400px&#039;, opacity:&#039;0.5&#039;, height:&#039;80px&#039;, width:&#039;100px&#039;}, 1300)
				.animate({left:&#039;260px&#039;, top:&#039;250px&#039;, opacity:&#039;0.8&#039;}, 1000)
				.animate({left:&#039;100px&#039;, width:&#039;0&#039;, opacity:&#039;0.2&#039;}, 1200)
				.animate({width:&#039;154px&#039;, top:&#039;100px&#039;, left:&#039;150px&#039;, opacity:&#039;0.5&#039;}, 1000)
				.animate({left:&#039;30px&#039;, height:&#039;135px&#039;, width:&#039;154px&#039;, top:&#039;30px&#039;, opacity:&#039;1&#039;}, 1200);

			return false;
		});
	});

&lt;/script&gt;
&lt;title&gt;Mohammed CHERIFI - Enchainement d&#039;une animation sous jQUery&lt;/title&gt;
&lt;style type=&quot;text/css&quot;&gt;	

	#contenaire{
		position:relative;
		margin:10px;
	}

	#mondiv{
		background:#f00;
		width:150px;
		height:150px;
		border:1px solid #077F2E;
		position:absolute;
	}

	#monetoile{
		position:absolute;
		display:none;
	}

&lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;

	&lt;a href=&quot;#&quot; id=&quot;animationlink&quot;&gt;Animaer&lt;/a&gt;&lt;br /&gt;

	&lt;div id=&quot;contenaire&quot;&gt;
		&lt;div id=&quot;mondiv&quot;&gt;&lt;/div&gt;
		&lt;img id=&quot;monetoile&quot; src=&quot;star.gif&quot; alt=&quot;I Love Morocco&quot; width=&quot;154&quot; height=&quot;135&quot;/&gt;
	&lt;/div&gt;

&lt;/body&gt;
&lt;/html&gt;
</pre>
<p><a href="/data/animation/animatetuto.zip">Télécharger le code source de l&#8217;amination</a></p>



Partager cet article:


	<a rel="nofollow"  target="_blank" href="http://www.mcherifi.org/wp-content/plugins/sociable/awesmate.php?c=twitter&t=http%3A%2F%2Fwww.mcherifi.org%2Ftutoriaux%2Fenchainer-plusieurs-animations-avec-jquery.html&d=http://twitter.com/home?status=Enchainer%20plusieurs%20animations%20avec%20jQuery%20-%20TARGET" title="Twitter"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mcherifi.org/wp-content/plugins/sociable/awesmate.php?c=facebook-post&t=http%3A%2F%2Fwww.mcherifi.org%2Ftutoriaux%2Fenchainer-plusieurs-animations-avec-jquery.html&d=http://www.facebook.com/share.php?u=TARGET%26t=Enchainer%20plusieurs%20animations%20avec%20jQuery" title="Facebook"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mcherifi.org%2Ftutoriaux%2Fenchainer-plusieurs-animations-avec-jquery.html&amp;title=Enchainer%20plusieurs%20animations%20avec%20jQuery&amp;annotation=Bonjour%20%C3%A0%20tous%21%0D%0A%0D%0ASavez%20vous%20qu%27avec%20jQuery%20il%20est%20possible%20d%27enchainer%20plusieurs%20animations%20%C3%A0%20la%20fois%20dans%20une%20seule%20instruction%3F%20alors%20la%20r%C3%A9ponse%20est%20OUI%2C%20on%20peut%20m%C3%AAme%20aller%20plus%20loin%20avec%20un%20peu%20d%27imagination%20et%20c%27est%20vraiment%20tr%C3%A8s%20facile%20%C3%A0" title="Google Bookmarks"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mcherifi.org%2Ftutoriaux%2Fenchainer-plusieurs-animations-avec-jquery.html&amp;title=Enchainer%20plusieurs%20animations%20avec%20jQuery&amp;notes=Bonjour%20%C3%A0%20tous%21%0D%0A%0D%0ASavez%20vous%20qu%27avec%20jQuery%20il%20est%20possible%20d%27enchainer%20plusieurs%20animations%20%C3%A0%20la%20fois%20dans%20une%20seule%20instruction%3F%20alors%20la%20r%C3%A9ponse%20est%20OUI%2C%20on%20peut%20m%C3%AAme%20aller%20plus%20loin%20avec%20un%20peu%20d%27imagination%20et%20c%27est%20vraiment%20tr%C3%A8s%20facile%20%C3%A0" title="del.icio.us"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.netvibes.com/share?title=Enchainer%20plusieurs%20animations%20avec%20jQuery&amp;url=http%3A%2F%2Fwww.mcherifi.org%2Ftutoriaux%2Fenchainer-plusieurs-animations-avec-jquery.html" title="Netvibes"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/netvibes.png" title="Netvibes" alt="Netvibes" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.viadeo.com/shareit/share/?url=http%3A%2F%2Fwww.mcherifi.org%2Ftutoriaux%2Fenchainer-plusieurs-animations-avec-jquery.html&title=Enchainer%20plusieurs%20animations%20avec%20jQuery&urllanguage=fr" title="viadeo FR"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/viadeo.png" title="viadeo FR" alt="viadeo FR" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mcherifi.org%2Ftutoriaux%2Fenchainer-plusieurs-animations-avec-jquery.html&amp;title=Enchainer%20plusieurs%20animations%20avec%20jQuery&amp;bodytext=Bonjour%20%C3%A0%20tous%21%0D%0A%0D%0ASavez%20vous%20qu%27avec%20jQuery%20il%20est%20possible%20d%27enchainer%20plusieurs%20animations%20%C3%A0%20la%20fois%20dans%20une%20seule%20instruction%3F%20alors%20la%20r%C3%A9ponse%20est%20OUI%2C%20on%20peut%20m%C3%AAme%20aller%20plus%20loin%20avec%20un%20peu%20d%27imagination%20et%20c%27est%20vraiment%20tr%C3%A8s%20facile%20%C3%A0" title="Digg"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.mcherifi.org%2Ftutoriaux%2Fenchainer-plusieurs-animations-avec-jquery.html&amp;title=Enchainer%20plusieurs%20animations%20avec%20jQuery&amp;source=Mohammed+CHERIFI+Another+Web+Developper+Blog%21&amp;summary=Bonjour%20%C3%A0%20tous%21%0D%0A%0D%0ASavez%20vous%20qu%27avec%20jQuery%20il%20est%20possible%20d%27enchainer%20plusieurs%20animations%20%C3%A0%20la%20fois%20dans%20une%20seule%20instruction%3F%20alors%20la%20r%C3%A9ponse%20est%20OUI%2C%20on%20peut%20m%C3%AAme%20aller%20plus%20loin%20avec%20un%20peu%20d%27imagination%20et%20c%27est%20vraiment%20tr%C3%A8s%20facile%20%C3%A0" title="LinkedIn"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Enchainer%20plusieurs%20animations%20avec%20jQuery&amp;url=http%3A%2F%2Fwww.mcherifi.org%2Ftutoriaux%2Fenchainer-plusieurs-animations-avec-jquery.html" title="Slashdot"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mcherifi.org%2Ftutoriaux%2Fenchainer-plusieurs-animations-avec-jquery.html" title="Sphinn"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mcherifi.org%2Ftutoriaux%2Fenchainer-plusieurs-animations-avec-jquery.html&amp;title=Enchainer%20plusieurs%20animations%20avec%20jQuery" title="Mixx"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a  target="_blank" href="http://blogplay.com" title="Blogplay"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/blogplay.png" title="Blogplay" alt="Blogplay" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fwww.mcherifi.org%2Ftutoriaux%2Fenchainer-plusieurs-animations-avec-jquery.html" title="Identi.ca"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.mcherifi.org%2Ftutoriaux%2Fenchainer-plusieurs-animations-avec-jquery.html&amp;partner=sociable" title="Print"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mcherifi.org/wp-content/plugins/sociable/awesmate.php?c=pingfm&t=http%3A%2F%2Fwww.mcherifi.org%2Ftutoriaux%2Fenchainer-plusieurs-animations-avec-jquery.html&d=http://ping.fm/ref/?link=TARGET%26title=Enchainer%20plusieurs%20animations%20avec%20jQuery%26body=Bonjour%20%C3%A0%20tous%21%0D%0A%0D%0ASavez%20vous%20qu%27avec%20jQuery%20il%20est%20possible%20d%27enchainer%20plusieurs%20animations%20%C3%A0%20la%20fois%20dans%20une%20seule%20instruction%3F%20alors%20la%20r%C3%A9ponse%20est%20OUI%2C%20on%20peut%20m%C3%AAme%20aller%20plus%20loin%20avec%20un%20peu%20d%27imagination%20et%20c%27est%20vraiment%20tr%C3%A8s%20facile%20%C3%A0" title="Ping.fm"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mcherifi.org/wp-content/plugins/sociable/awesmate.php?c=mailto&t=http%3A%2F%2Fwww.mcherifi.org%2Ftutoriaux%2Fenchainer-plusieurs-animations-avec-jquery.html&d=mailto:?subject=Enchainer%20plusieurs%20animations%20avec%20jQuery%26body=TARGET" title="email"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Fwww.mcherifi.org%2Ftutoriaux%2Fenchainer-plusieurs-animations-avec-jquery.html&amp;title=Enchainer%20plusieurs%20animations%20avec%20jQuery&amp;selection=Bonjour%20%C3%A0%20tous%21%0D%0A%0D%0ASavez%20vous%20qu%27avec%20jQuery%20il%20est%20possible%20d%27enchainer%20plusieurs%20animations%20%C3%A0%20la%20fois%20dans%20une%20seule%20instruction%3F%20alors%20la%20r%C3%A9ponse%20est%20OUI%2C%20on%20peut%20m%C3%AAme%20aller%20plus%20loin%20avec%20un%20peu%20d%27imagination%20et%20c%27est%20vraiment%20tr%C3%A8s%20facile%20%C3%A0" title="Posterous"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/posterous.png" title="Posterous" alt="Posterous" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.mcherifi.org%2Ftutoriaux%2Fenchainer-plusieurs-animations-avec-jquery.html&amp;title=Enchainer%20plusieurs%20animations%20avec%20jQuery" title="Reddit"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fwww.mcherifi.org%2Ftutoriaux%2Fenchainer-plusieurs-animations-avec-jquery.html&amp;submitHeadline=Enchainer%20plusieurs%20animations%20avec%20jQuery&amp;submitSummary=Bonjour%20%C3%A0%20tous%21%0D%0A%0D%0ASavez%20vous%20qu%27avec%20jQuery%20il%20est%20possible%20d%27enchainer%20plusieurs%20animations%20%C3%A0%20la%20fois%20dans%20une%20seule%20instruction%3F%20alors%20la%20r%C3%A9ponse%20est%20OUI%2C%20on%20peut%20m%C3%AAme%20aller%20plus%20loin%20avec%20un%20peu%20d%27imagination%20et%20c%27est%20vraiment%20tr%C3%A8s%20facile%20%C3%A0&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.mcherifi.org%2Ftutoriaux%2Fenchainer-plusieurs-animations-avec-jquery.html&amp;partner=sociable" title="PDF"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mcherifi.org/feed" title="RSS"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.diigo.com/post?url=http%3A%2F%2Fwww.mcherifi.org%2Ftutoriaux%2Fenchainer-plusieurs-animations-avec-jquery.html&amp;title=Enchainer%20plusieurs%20animations%20avec%20jQuery" title="Diigo"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/diigo.png" title="Diigo" alt="Diigo" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://cgi.fark.com/cgi/fark/farkit.pl?h=Enchainer%20plusieurs%20animations%20avec%20jQuery&amp;u=http%3A%2F%2Fwww.mcherifi.org%2Ftutoriaux%2Fenchainer-plusieurs-animations-avec-jquery.html" title="Fark"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.blogospherenews.com/submit.php?url=http%3A%2F%2Fwww.mcherifi.org%2Ftutoriaux%2Fenchainer-plusieurs-animations-avec-jquery.html&amp;title=Enchainer%20plusieurs%20animations%20avec%20jQuery" title="Blogosphere News"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/blogospherenews.png" title="Blogosphere News" alt="Blogosphere News" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://cimlap.blogter.hu/index.php?action=suggest_link&amp;title=Enchainer%20plusieurs%20animations%20avec%20jQuery&amp;url=http%3A%2F%2Fwww.mcherifi.org%2Ftutoriaux%2Fenchainer-plusieurs-animations-avec-jquery.html" title="blogtercimlap"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/blogter.png" title="blogtercimlap" alt="blogtercimlap" class="sociable-hovers" /></a>


<br/><br/>
<p class="FacebookLikeButton"><fb:like href="http%3A%2F%2Fwww.mcherifi.org%2Ftutoriaux%2Fenchainer-plusieurs-animations-avec-jquery.html" layout="standard" show_faces="true" width="450" action="like" colorscheme="light"></fb:like></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mcherifi.org/tutoriaux/enchainer-plusieurs-animations-avec-jquery.html/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

