Plugins

The plugins site is currently in development.

We've been looking to provide a higher-quality, spam-free experience at the plugins site for some time, and a major error on our part forced us to shut down the current site before we could put the new one in place. We are developing a new site, and you can follow along with its development on GitHub. For more information about this transition, including steps you can take as a plugin author to prepare, please read our post about what's going on.

Releases for colorBlend! Color fading plugin.


colorBlend 3.0.5

Download Size md5 hash
jquery.colorBlend.zip 16.36 KB ee9d92712908ac51ce8768c39535f168
Last updated: October 11, 2010 - 2:16pm

Refactored with simple math, "over-coded" previously.
Added simpler way of calling colorblend.
Added $.colorPercent() pass in an array of colors and the blended color will be returned by the percent specified.

colorBlend! Color fading plugin. 3.0.4

After further testing a bug was found and fixed.

colorBlend! Color fading plugin. 3.0.4

After further testing a bug was discovered and fixed.

colorBlend! Color fading plugin. 3.0.3

colorBlend sans Zip file.

colorBlend! Color fading plugin. 3.0.3

Zip file contains source, packed and minified.

colorBlend! Color fading plugin. 3.0.2-Final

Fixed flickering issue.
Removed unnecessary selector.

colorBlend! Color fading plugin. 3.0.2-Lite

This version does not support color names.
For those who want to save every bit of space possible.

colorBlend! Color fading plugin. 3.0.2

Fixed flickering opacity issue.
Removed unnecessary selector.

colorBlend! Color fading plugin. 3.0.1

Noticed sibling objects were getting different treatment.
Attaching release as zip file with min and packed code included.

colorBlend! Color fading plugin. 3.0.0

Totally re-done, handles blendng better.

colorBlend! Color fading plugin. 2.0.1

Added callbacks. postCallBack, preCallBack and cycleCallBack.
Removed some wandering debug code.
Added isArray function, jQuery.isArray made plugin incompatible with earlier versions of jQuery (pre 1.3)
Fixed only issue found where last frame wasn't being set.

colorBlend! Color fading plugin. 2.0.0

Completely re-written from ground up.
See documentation at top of code for changes and available options.

colorBlend! Color fading plugin. 1.6.1

Fixed some bugs introduced by 1.6
color list wasn't supporting random, parent, current, opposite and transparent arguments. It's been fixed.

colorBlend! Color fading plugin. 1.6.0

Updated with new functionality.
colorList is now used instead of fromColor and toColor (They still work though)
alpha now accepts an array of numbers as well, old string will still work too.
Example of new usage:
var clrs = [
{param:"background-color", colorList: ["Green", "rgb(255, 0, 0)", "#ff9900"], alpha: [10, 100, 75]}
];
$("div").colorBlend(clrs);

colorBlend! Color fading plugin. 1.5.0

Bugs fixed:
* In my ignorance I noticed that alpha is taken care of quite nicely by jquery itself. No need to fix what isn't broke. Removed the custom stuff I had placed in.
* Found an issue where if pausing and resuming something repeatitivly it might not sync up and cause weird flashing effects. Added isPOrS variable to check if paused or stopped. Seems to work.

colorBlend! Color fading plugin. 1.4.0

Added ability to stop, pause and resume all animation for an element.

colorBlend! Color fading plugin. 1.3

Additions: 1.3.0
* Added Queueing ability, so an animation will take arguments and process them once they are available. The Queue option is toggle-able isQueue: false to disable. True is default.
* Added Action parameter available arguments are stop, pause, and resume. Resume continues a paused animation. Where stop lets you assign a whole new animation to the element.

colorBlend! Color fading plugin. 1.2.0

Fixed issue where alpha was modifying width/height incorrectly.
Fixed issue where animation wasn't playing last frame.

colorBlend! Color fading plugin. 1.0.5

Fixed issue found by cratchit. Can now call colorBlend with no options.

colorBlend! Color fading plugin. 1.0.4

Additions:
1.0.3
* Added Alpha/Opacity blending! Add alpha:"0,100" to list of parameters.
Note: Will change the opacity of element only, not the property!
If you only want text to appear and dissapear, you'll have to put it in it's own element, otherise the whole
element will fade, not just your text.
1.0.4
* Alpha will now take just one argument alpha:"30" if you want to just change the alpha and not have it animate.
* Current is now the default fromColor value. The current value will get the current color of the element. If current is transparent, it will get the parent color.
* Opposite is now the default toColor value.