<?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>Design-Notes &#187; Animation</title>
	<atom:link href="http://design-notes.info/tag/animation/feed/" rel="self" type="application/rss+xml" />
	<link>http://design-notes.info</link>
	<description>Design-Notes</description>
	<lastBuildDate>Wed, 23 Jun 2010 16:08:45 +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>Flashy intro with jQuery animation</title>
		<link>http://design-notes.info/tutorial/jquery-tutorial/flashy-intro-with-jquery-animation/</link>
		<comments>http://design-notes.info/tutorial/jquery-tutorial/flashy-intro-with-jquery-animation/#comments</comments>
		<pubDate>Sun, 26 Apr 2009 08:37:45 +0000</pubDate>
		<dc:creator>alexandra</dc:creator>
				<category><![CDATA[Feature Articles]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Animation]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[featured]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://design-notes.info/?p=918</guid>
		<description><![CDATA[Remember those days which almost every website has a Flash intro or header that makes you wait un&#8230; forever. Now more and more people are using jQuery&#8217;s animation function to make their sites interesting. Let&#8217;s see how we do it.
Try the demo.

Header:
link jquery and jQuery color plugin
&#60;script src=&#34;js/jquery-1.3.2.js&#34; type=&#34;text/javascript&#34;&#62;&#60;/script&#62;
&#60;script type=&#34;text/javascript&#34; language=&#34;Javascript&#34; src=&#34;js/jquery.color.js&#34;&#62;&#60;/script&#62;
The HTML:
I used a [...]]]></description>
			<content:encoded><![CDATA[<p>Remember those days which almost every website has a Flash intro or header that makes you wait un&#8230; forever. Now more and more people are using jQuery&#8217;s animation function to make their sites interesting. Let&#8217;s see how we do it.</p>
<p>Try the <a href="http://design-notes.info/demo/flashy.html" target="_blank">demo</a>.<br />
<img class="alignnone size-medium wp-image-962" title="Flashy intro with jQuery animation" src="http://design-notes.info/wp-content/uploads/2009/04/picture-112-300x125.png" alt="Flashy intro with jQuery animation" width="300" height="125" /></p>
<h2>Header:</h2>
<p>link jquery and <a href="http://plugins.jquery.com/project/color" target="_blank">jQuery color</a> plugin</p>
<pre class="html"><span class="htmlScriptTag">&lt;script src=<span class="htmlAttributeValue">&quot;js/jquery-1.3.2.js&quot;</span> type=<span class="htmlAttributeValue">&quot;text/javascript&quot;</span>&gt;</span><span class="htmlScriptTag">&lt;/script&gt;</span>
<span class="htmlScriptTag">&lt;script type=<span class="htmlAttributeValue">&quot;text/javascript&quot;</span> language=<span class="htmlAttributeValue">&quot;Javascript&quot;</span> src=<span class="htmlAttributeValue">&quot;js/jquery.color.js&quot;</span>&gt;</span><span class="htmlScriptTag">&lt;/script&gt;</span></pre>
<h2>The HTML:</h2>
<p>I used a list of links, like a menu, because I want to be able to make them to real links in the future. For now the links are empty. <strong>Each link</strong> has a <strong>class of &#8220;c+number&#8221; </strong>which stands for the color number in the color list we make later in the JavaScript.</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;div id=&quot;container&quot;&gt;
&lt;ul id=&quot;navigator&quot; class=&quot;fancy&quot;&gt;
	&lt;li&gt;&lt;a class=&quot;c1&quot; href=&quot;#&quot;&gt;Design-Notes&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a class=&quot;c2&quot; href=&quot;#&quot;&gt;Likes to be&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a class=&quot;c3&quot; href=&quot;#&quot;&gt;Creative&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;</pre></div></div>

<h2>CSS</h2>
<p>This part is pretty standard, <strong>dark </strong>background goes well with this intro.<code>#navigator li a</code>&#8217;s <strong>position</strong> has to be defined. It can either be <strong>absolute or relative</strong>. Each will give you a different result of animation.</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">body<span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#000</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span><span style="color: #933;">30px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">font-family</span><span style="color: #3333ff;">:Arial</span><span style="color: #00AA00;">,</span> Helvetica<span style="color: #00AA00;">,</span> <span style="color: #993333;">sans-serif</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
a<span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#fff</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">text-decoration</span><span style="color: #00AA00;">:</span><span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">font-weight</span><span style="color: #00AA00;">:</span><span style="color: #993333;">bold</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#container</span><span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #933;">600px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #933;">100px</span> <span style="color: #993333;">auto</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#navigator</span> li<span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span><span style="color: #993333;">inline</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#navigator</span> li a<span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span><span style="color: #993333;">relative</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span><span style="color: #933;">2px</span> <span style="color: #933;">5px</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span></pre></div></div>

<h2>JavaScript</h2>
<p>A litter harder than my previous post on <a href="http://design-notes.info/tutorial/jquery-tutorial/build-a-simple-cost-estimator-with-jquery-ui-slider/">the cost estimator with UI</a> but still quite short.</p>
<h3>Using animation:</h3>
<p><code>animate( Hash params, String|Number speed, String easing, Function callback<br />
(optional) A function to be executed whenever the animation completes.<br />
)</code><br />
You can use <code>fontSize,color, backgroundColor, width and borderWidth </code>etc. Then define the speed of your animation. You can use strings like <strong>slow, fast </strong>or integers in milliseconds (1000 =1 second).<br />
here is a simple 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;#myDiv&quot;</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> color<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;pink&quot;</span> <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">500</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>Here is our code:</p>
<ul>
<li>Line 1:choose the colors you wan to use, put them in an array called menu_over_color</li>
<li>Line 3:The object I will animate is a under navigator, so select all of them with <code>each</code>:<br />
<blockquote><p><strong>Each</strong>: Execute a function within the context of every matched element.</p></blockquote>
</li>
<li>Line 4:point the <code>class</code> attribute to our color list in line1. <code>substring(start,stop)</code>for example: the <code>substring(1,3)</code>&#8217;s result of &#8220;hello&#8221; is &#8220;hel&#8221;. I originally had fifteen colors listed. <a href="http://www.learningjquery.com/wp-content/themes/ljq/docs.php?fn=attr" target="_blank">Here</a> is a more detailed explanation on <code>attr</code></li>
<li>Lin5 to 13: animation sequence: change<strong> color&gt;font size&gt;position&gt;background color&gt; then settle down to white text and their own background color</strong>. This is not the only option, play around with it. You could surprise yourself.</li>
<li>Last 8 lines are optional. They deal with hover.</li>
</ul>
<p>Finally, I suggest you read about<a href="http://docs.jquery.com/Effects/animate#paramsdurationeasingcallback" target="_blank"> chained animation and unqueued animation animation</a>.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #006600; font-style: italic;">/* the colors */</span>
<span style="color: #003366; font-weight: bold;">var</span> menu_over_colors <span style="color: #339933;">=</span> <span style="color: #009900;">&#91;</span><span style="color: #3366CC;">&quot;#ffffff&quot;</span><span style="color: #339933;">,</span><span style="color: #3366CC;">&quot;#55C7FF&quot;</span><span style="color: #339933;">,</span><span style="color: #3366CC;">&quot;#FF5A8D&quot;</span><span style="color: #339933;">,</span><span style="color: #3366CC;">&quot;#FFA324&quot;</span><span style="color: #339933;">,</span><span style="color: #3366CC;">&quot;#f453g5&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span><span style="color: #006600; font-style: italic;">/* the colors you want to use*/</span>
$<span style="color: #009900;">&#40;</span>document<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">ready</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#navigator &gt; li &gt; a&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">each</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
<span style="color: #003366; font-weight: bold;">var</span> over_color <span style="color: #339933;">=</span> menu_over_colors<span style="color: #009900;">&#91;</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;">attr</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'class'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">substring</span><span style="color: #009900;">&#40;</span><span style="color: #CC0000;">1</span><span style="color: #339933;">,</span><span style="color: #CC0000;">3</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
   $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#navigator li a&quot;</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> color<span style="color: #339933;">:</span> over_color <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">200</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><span style="color: #006600; font-style: italic;">/* animate text color for all text*/</span>
  $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#navigator li+li+li a&quot;</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>fontSize<span style="color: #339933;">:</span> <span style="color: #3366CC;">'3em'</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">300</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><span style="color: #006600; font-style: italic;">/* animate text of the third list*/</span>
 $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#navigator li+li a&quot;</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;">'50px'</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">300</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><span style="color: #006600; font-style: italic;">/* animate text of the second list*/</span>
  $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#navigator li a&quot;</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>left<span style="color: #339933;">:</span> <span style="color: #3366CC;">'50px'</span><span style="color: #339933;">,</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">300</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>fontSize<span style="color: #339933;">:</span> <span style="color: #3366CC;">'1.5em'</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">300</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> backgroundColor<span style="color: #339933;">:</span>over_color <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">500</span><span style="color: #339933;">,</span> 
<span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><span style="color: #003366; font-weight: bold;">var</span> over_color  <span style="color: #339933;">=</span> menu_over_colors<span style="color: #009900;">&#91;</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;">attr</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'class'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">substring</span><span style="color: #009900;">&#40;</span><span style="color: #CC0000;">1</span><span style="color: #339933;">,</span><span style="color: #CC0000;">3</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span><span style="color: #006600; font-style: italic;">/* point out the colors again*/</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>color<span style="color: #339933;">:</span><span style="color: #3366CC;">'white'</span><span style="color: #339933;">,</span>backgroundColor<span style="color: #339933;">:</span>over_color<span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span><span style="color: #CC0000;">300</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><span style="color: #006600; font-style: italic;">/* animate all text again with callback function*/</span>
	$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#navigator &gt; li &gt; a&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">hover</span><span style="color: #009900;">&#40;</span>
		<span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><span style="color: #006600; font-style: italic;">//over</span>
			<span style="color: #003366; font-weight: bold;">var</span> over_color  <span style="color: #339933;">=</span> menu_over_colors<span style="color: #009900;">&#91;</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;">attr</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'class'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">substring</span><span style="color: #009900;">&#40;</span><span style="color: #CC0000;">1</span><span style="color: #339933;">,</span><span style="color: #CC0000;">3</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</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> color<span style="color: #339933;">:</span> over_color <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">500</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</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> backgroundColor<span style="color: #339933;">:</span>over_color <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">500</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span>
		<span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><span style="color: #006600; font-style: italic;">//out</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>color<span style="color: #339933;">:</span> menu_over_colors<span style="color: #009900;">&#91;</span><span style="color: #CC0000;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span><span style="color: #CC0000;">500</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></td></tr></table></div>




ADD TO<a href="#" onclick="javascript:(function(){EN_CLIP_HOST='http://www.evernote.com';try{var x=document.createElement('SCRIPT');x.type='text/javascript';x.src=EN_CLIP_HOST+'/public/bookmarkClipper.js?'+(new Date().getTime()/100000);document.getElementsByTagName('head')[0].appendChild(x);}catch(e){location.href=EN_CLIP_HOST+'/clip.action?url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title);}})();"><img src="http://img44.imageshack.us/img44/3714/picture4p.png" alt="Add To Evernote" /></a>  If this helps, why not tell your friends?


	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdesign-notes.info%2Ftutorial%2Fjquery-tutorial%2Fflashy-intro-with-jquery-animation%2F&amp;title=Flashy%20intro%20with%20jQuery%20animation" title="Reddit"><img src="http://design-notes.info/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fdesign-notes.info%2Ftutorial%2Fjquery-tutorial%2Fflashy-intro-with-jquery-animation%2F&amp;title=Flashy%20intro%20with%20jQuery%20animation&amp;notes=Remember%20those%20days%20which%20almost%20every%20website%20has%20a%20Flash%20intro%20or%20header%20that%20makes%20you%20wait%20un...%20forever.%20Now%20more%20and%20more%20people%20are%20using%20jQuery%27s%20animation%20function%20to%20make%20their%20sites%20interesting.%20Let%27s%20see%20how%20we%20do%20it.%0D%0A%0D%0ATry%20the%20demo.%0D%0A%0D%0A" title="del.icio.us"><img src="http://design-notes.info/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.stumbleupon.com/submit?url=http%3A%2F%2Fdesign-notes.info%2Ftutorial%2Fjquery-tutorial%2Fflashy-intro-with-jquery-animation%2F&amp;title=Flashy%20intro%20with%20jQuery%20animation" title="StumbleUpon"><img src="http://design-notes.info/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdesign-notes.info%2Ftutorial%2Fjquery-tutorial%2Fflashy-intro-with-jquery-animation%2F&amp;t=Flashy%20intro%20with%20jQuery%20animation" title="Facebook"><img src="http://design-notes.info/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fdesign-notes.info%2Ftutorial%2Fjquery-tutorial%2Fflashy-intro-with-jquery-animation%2F" title="Technorati"><img src="http://design-notes.info/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.designfloat.com/submit.php?url=http%3A%2F%2Fdesign-notes.info%2Ftutorial%2Fjquery-tutorial%2Fflashy-intro-with-jquery-animation%2F&amp;title=Flashy%20intro%20with%20jQuery%20animation" title="Design Float"><img src="http://design-notes.info/wp-content/plugins/sociable/images/designfloat.png" title="Design Float" alt="Design Float" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fdesign-notes.info%2Ftutorial%2Fjquery-tutorial%2Fflashy-intro-with-jquery-animation%2F" title="Identi.ca"><img src="http://design-notes.info/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.friendfeed.com/share?title=Flashy%20intro%20with%20jQuery%20animation&amp;link=http%3A%2F%2Fdesign-notes.info%2Ftutorial%2Fjquery-tutorial%2Fflashy-intro-with-jquery-animation%2F" title="FriendFeed"><img src="http://design-notes.info/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fdesign-notes.info%2Ftutorial%2Fjquery-tutorial%2Fflashy-intro-with-jquery-animation%2F&amp;submitHeadline=Flashy%20intro%20with%20jQuery%20animation&amp;submitSummary=Remember%20those%20days%20which%20almost%20every%20website%20has%20a%20Flash%20intro%20or%20header%20that%20makes%20you%20wait%20un...%20forever.%20Now%20more%20and%20more%20people%20are%20using%20jQuery%27s%20animation%20function%20to%20make%20their%20sites%20interesting.%20Let%27s%20see%20how%20we%20do%20it.%0D%0A%0D%0ATry%20the%20demo.%0D%0A%0D%0A&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://design-notes.info/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fdesign-notes.info%2Ftutorial%2Fjquery-tutorial%2Fflashy-intro-with-jquery-animation%2F&amp;title=Flashy%20intro%20with%20jQuery%20animation&amp;body=Remember%20those%20days%20which%20almost%20every%20website%20has%20a%20Flash%20intro%20or%20header%20that%20makes%20you%20wait%20un...%20forever.%20Now%20more%20and%20more%20people%20are%20using%20jQuery%27s%20animation%20function%20to%20make%20their%20sites%20interesting.%20Let%27s%20see%20how%20we%20do%20it.%0D%0A%0D%0ATry%20the%20demo.%0D%0A%0D%0A" title="Ping.fm"><img src="http://design-notes.info/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://design-notes.info/tutorial/jquery-tutorial/flashy-intro-with-jquery-animation/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
	</channel>
</rss>
