Plugins

User login
Can't find a Plugin?

Can't find a Plugin you are looking for? Check out the jQuery Wiki page.

Are you a plugin developer? Please move your plugin over to this site.

Website Bug or Feature Request?

Found a bug on the new jQuery Plugin website? Have a feature request?

Submit it to the jQuery Plugin website issue queue to ensure it is noticed!

colour


colorBlend! Color fading plugin.

Average rating
(9 votes)

Based on the fade anything plugin, I wanted something a little more robust.
This plugin accepts a javascript array of parameter objects.
current version is always available here: http://www.happinessinmycheeks.com/colorBlend
The current version is 1.6.1

Now uses better transitioning! Multiple colors and opacities to cycle through!

Example:

$("body").colorBlend([{colorList:["black",  "white"], param:"color"}]);
var myColors = [
{param:"color", fromColor:"white", toColor:"black"},
{param:"background-color", random: true, alpha:"10,90"},
{param:"border-left-color", colorList: ["random", "gold", "black"], alpha: [100, 10, 75]},
{param:"border-right-color", colorList:["rgb(0,0,100%)", "lime"},
{param:"border-top-color", colorList:["white","black", "#00FF00", "blue", "rgb(126, 100, 40)"]},
{param:"border-bottom-color", colorList:["white", "tomato"]}
];
$("tr").colorBlend(myColors);