<?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>jQuery Tutorials &#38; Plugins &#187; fading</title>
	<atom:link href="http://jqueryblog.net/tag/fading/feed/" rel="self" type="application/rss+xml" />
	<link>http://jqueryblog.net</link>
	<description></description>
	<lastBuildDate>Mon, 05 Jul 2010 08:45:57 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Fading Links Using jQuery: dwFadingLinks</title>
		<link>http://jqueryblog.net/2009/11/fading-links-using-jquery-dwfadinglinks/</link>
		<comments>http://jqueryblog.net/2009/11/fading-links-using-jquery-dwfadinglinks/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 08:25:13 +0000</pubDate>
		<dc:creator>Osman Erdo&#287;an</dc:creator>
				<category><![CDATA[jQuery Tutorial]]></category>
		<category><![CDATA[davidwalsh]]></category>
		<category><![CDATA[dwFadingLinks]]></category>
		<category><![CDATA[fading]]></category>
		<category><![CDATA[Fading Links]]></category>

		<guid isPermaLink="false">http://jqueryblog.net/?p=7</guid>
		<description><![CDATA[
Earlier this week, I posted a MooTools script that faded links to and from a color during the mouseover and mouseout events. My thought was ?why do a harsh a:hover color change when you can fade to that color?? Here is how to implement link color fading using jQuery.
Usage
/* plugin */
jQuery.fn.dwFadingLinks = function(settings) {
	settings = [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fjqueryblog.net%2F2009%2F11%2Ffading-links-using-jquery-dwfadinglinks%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fjqueryblog.net%2F2009%2F11%2Ffading-links-using-jquery-dwfadinglinks%2F" height="61" width="51" /></a></div><p><img style="max-width: 580px; margin-left: 5px; margin-right: 5px; border: 0px initial initial;" src="http://i34.tinypic.com/fszyw.jpg" alt="" width="451" height="168" /><br />
Earlier this week, I posted a MooTools script that faded links to and from a color during the mouseover and mouseout events. My thought was ?why do a harsh a:hover color change when you can fade to that color?? Here is how to implement link color fading using jQuery.</p>
<p><strong>Usage</strong></p>
<pre class="brush: jscript;">/* plugin */
jQuery.fn.dwFadingLinks = function(settings) {
	settings = jQuery.extend({
		color: '#ff8c00',
		duration: 500
	}, settings);
	return this.each(function() {
		var original = $(this).css('color');
		$(this).mouseover(function() { $(this).animate({ color: settings.color },settings.duration); });
		$(this).mouseout(function() { $(this).animate({ color: original },settings.duration); });
	});
};

/* usage */
$(document).ready(function() {
	$('.fade').dwFadingLinks({
		color: '#008000',
		duration: 700
	});
});</pre>
<p><a href="http://davidwalsh.name/fading-links-jquery-dwfadinglinks" target="_blank">Web Site</a> - <a href="http://davidwalsh.name/dw-content/fading-links-jquery.php" target="_blank">Demo</a> - <a href="http://davidwalsh.name/dw-content/jquery.dwFadingLinks.js" target="_blank">Download</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jqueryblog.net/2009/11/fading-links-using-jquery-dwfadinglinks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hover fading transition with jQuery</title>
		<link>http://jqueryblog.net/2009/11/hover-fading-transition-with-jquery/</link>
		<comments>http://jqueryblog.net/2009/11/hover-fading-transition-with-jquery/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 08:13:45 +0000</pubDate>
		<dc:creator>Osman Erdo&#287;an</dc:creator>
				<category><![CDATA[jQuery Tutorial]]></category>
		<category><![CDATA[fading]]></category>
		<category><![CDATA[fading transitions]]></category>
		<category><![CDATA[Hover fading]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://jqueryblog.net/?p=5</guid>
		<description><![CDATA[Create fading transitions on hover in jQuery using this wonderful jQuery Tutorial.

Web Site - Demo
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fjqueryblog.net%2F2009%2F11%2Fhover-fading-transition-with-jquery%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fjqueryblog.net%2F2009%2F11%2Fhover-fading-transition-with-jquery%2F" height="61" width="51" /></a></div><p>Create fading transitions on hover in jQuery using this wonderful jQuery Tutorial.</p>
<p><img class="alignnone" src="http://i37.tinypic.com/8yzzpf.jpg" alt="" width="277" height="346" /></p>
<p><a href="http://greg-j.com/2008/07/21/hover-fading-transition-with-jquery/" target="_blank">Web Site</a> - <span style="background-color: #ffffff;"><a href="http://greg-j.com/static-content/hover-fade.html" target="_blank">Demo</a></span></p>
]]></content:encoded>
			<wfw:commentRss>http://jqueryblog.net/2009/11/hover-fading-transition-with-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

