9 November 2009 0 Comments

Fading Links Using jQuery: dwFadingLinks


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 = 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
	});
});

Web SiteDemoDownload

http://jqueryblog.net/wp-content/plugins/sociofluid/images/digg_24.png http://jqueryblog.net/wp-content/plugins/sociofluid/images/reddit_24.png http://jqueryblog.net/wp-content/plugins/sociofluid/images/dzone_24.png http://jqueryblog.net/wp-content/plugins/sociofluid/images/stumbleupon_24.png http://jqueryblog.net/wp-content/plugins/sociofluid/images/delicious_24.png http://jqueryblog.net/wp-content/plugins/sociofluid/images/blinklist_24.png http://jqueryblog.net/wp-content/plugins/sociofluid/images/blogmarks_24.png http://jqueryblog.net/wp-content/plugins/sociofluid/images/furl_24.png http://jqueryblog.net/wp-content/plugins/sociofluid/images/newsvine_24.png http://jqueryblog.net/wp-content/plugins/sociofluid/images/technorati_24.png http://jqueryblog.net/wp-content/plugins/sociofluid/images/magnolia_24.png http://jqueryblog.net/wp-content/plugins/sociofluid/images/google_24.png http://jqueryblog.net/wp-content/plugins/sociofluid/images/myspace_24.png http://jqueryblog.net/wp-content/plugins/sociofluid/images/facebook_24.png http://jqueryblog.net/wp-content/plugins/sociofluid/images/yahoobuzz_24.png http://jqueryblog.net/wp-content/plugins/sociofluid/images/sphinn_24.png http://jqueryblog.net/wp-content/plugins/sociofluid/images/mixx_24.png http://jqueryblog.net/wp-content/plugins/sociofluid/images/twitter_24.png http://jqueryblog.net/wp-content/plugins/sociofluid/images/jamespot_24.png http://jqueryblog.net/wp-content/plugins/sociofluid/images/meneame_24.png

Leave a Reply

Get Adobe Flash playerPlugin by wpburn.com wordpress themes