<?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>TechieDrill &#187; fade in</title>
	<atom:link href="http://techiedrill.com/tag/fade-in/feed/" rel="self" type="application/rss+xml" />
	<link>http://techiedrill.com</link>
	<description>Your World Of Technical Tutorials</description>
	<lastBuildDate>Tue, 10 Aug 2010 20:39:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>jQuery Fade In, Fade Out</title>
		<link>http://techiedrill.com/2009/11/jquery-fade-in-fade-out/</link>
		<comments>http://techiedrill.com/2009/11/jquery-fade-in-fade-out/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 17:59:41 +0000</pubDate>
		<dc:creator>bprashanth</dc:creator>
				<category><![CDATA[Jquery]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[fade in]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://techiedrill.com/?p=26</guid>
		<description><![CDATA[
To download this youtube video, Click Here
Text Content:
This is a simple tutorial on fadein and fadeout functionalities in jQuery.
An extra piece of information: A Dreamweaver API extension for jQuery.
When typing in a javascript file, the code-ins in this extension are quite handy. They show up pop-ups of scroll-down lists of functions available to use, so [...]]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="500" height="315" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/P3WrZeKHDIQ&amp;hl=en&amp;fs=1&amp;color1=0x234900&amp;color2=0x4e9e00&amp;border=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="500" height="315" src="http://www.youtube.com/v/P3WrZeKHDIQ&amp;hl=en&amp;fs=1&amp;color1=0x234900&amp;color2=0x4e9e00&amp;border=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>To download this youtube video, <a href="http://www.keephd.com/watch?v=P3WrZeKHDIQ">Click Here</a></p>
<p><strong>Text Content:</strong></p>
<p>This is a simple tutorial on fadein and fadeout functionalities in jQuery.</p>
<p><span style="text-decoration: underline;">An extra piece of information</span>: A Dreamweaver API extension for jQuery.<br />
When typing in a javascript file, the code-ins in this extension are quite handy. They show up pop-ups of scroll-down lists of functions available to use, so that we need not keep all the available jQuery functions in our head.<br />
The extension can be obtained here: <em>http://xtnd.us/dreamweaver/jquery</em><br />
There is even a small video tutorial on how the extension speeds-up jQuery coding in Dreamweaver.</p>
<p>There are three files associated in this tutorial: HTML file, CSS file and the javascript function file.</p>
<p>The following links are added to the blank HTML page:</p>
<ol>
<li>The jQuery source link &#8212; &lt;script type=&#8221;text/javascript&#8221; src=&#8221;http://jqueryjs.googlecode.com/files/jquery-1.2.6.js&#8221;&gt;&lt;/script&gt;</li>
<li>The CSS file link &#8212; &lt;link href=&#8221;css/style3.css&#8221; rel=&#8221;stylesheet&#8221; type=&#8221;text/css&#8221; /&gt;</li>
<li>The javascript function file &#8212; &lt;script src=&#8221;js/fucntion3.js&#8221; type=&#8221;text/javascript&#8221;&gt;&lt;/script&gt;</li>
</ol>
<p><strong>Note:</strong> It is important that your javascript function file tag comes after your jquery source link.</p>
<h4>The content of the CSS:</h4>
<pre><em>#content</em></pre>
<pre><em>{</em></pre>
<pre><em> height:200px;</em></pre>
<pre><em> width:200px;</em></pre>
<pre><em> background-color:#FF9933;</em></pre>
<pre><em>}</em></pre>
<h4>The HTML content:</h4>
<pre>&lt;body&gt;</pre>
<pre> &lt;div id="content"&gt;&lt;/div&gt;</pre>
<pre> &lt;a href="#" id="fadeout"&gt;Fade Out&lt;/a&gt;</pre>
<pre> &lt;a href="#" id="fadein"&gt;Fade In&lt;/a&gt;</pre>
<pre>&lt;/body&gt;</pre>
<h4>Now, the javascript function file is written as given below:</h4>
<pre>$(function() {</pre>
<pre> $("a#fadeout").click(function() {</pre>
<pre> $("#content").fadeOut(1000);</pre>
<pre> });</pre>
<pre> $("a#fadein").click(function() {</pre>
<pre> $("#content").fadeIn(1000);</pre>
<pre> });</pre>
<pre>});</pre>
<p>Here, we just get the &lt;a&gt; tag with id &#8220;fadeout&#8221; and assign its click function to fadeout the element with id &#8220;content&#8221; over a period of one second (1000 miliseconds).<br />
Similarly, the fadein function is also coded.</p>
]]></content:encoded>
			<wfw:commentRss>http://techiedrill.com/2009/11/jquery-fade-in-fade-out/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
