Cross-browser imageless linear gradients v2
A while ago, I posted a script of mine for creating 2-color cross-browser imageless linear gradients. As I stated there, I needed them for a color picker I have to create. And even though 2-color gradients are sufficient for most components, in most color spaces, I had forgotten an important one: Hue. You canât represent Hue with a 2-color gradient! So, I had to revise the script, and make it able to produce linear gradients of more than 2 colors. Furthermore, I needed to be able to specify a fully transparent color as one of the gradient colors, in order to create the photoshop-like 2d plane used by the picker (and no, a static image background like the one used in most JS color pickers wouldnât suffice, for reasons irrelevant with this post). I hereby present you Cross-browser, imageless, linear gradients v2!
The API has stayed just the same, with the following differences:
-
You may specify the keyword âtransparentâ instead of a #RRGGBB color (that was such a pain to implement btw!).
-
When creating a Gradient object, color strings are now defined in an array. Example:
var g = new Gradient(200, 100, [â#000000â, â#ff1166â, â#23ff46â], true);
-
When calling
g.paint()
it now takes 2 arguments instead of 3: The new color array (or null if you donât want that to change) and the direction (true for vertical, false for horizontal). For example:g.paint([â#000000â, â#ff1166â, â#23ff46â], true);
-
2 new methods have been added:
g.setColorAt(index, color)
andg.direction(newDirection)
. The first allows you to set a particular gradient color (index starting from 0) and the second to alter or toggle the direction (if you specify a direction parameter, you set the direction, if you call it with no parameters, it toggles from horizontal to vertical). -
The fields
g.startColor
andg.endColor
have been replaced by the arrayg.colors
.
Update: v2.0.1 Fixed a small bug with the âtransparentâ keyword that affected multi-color gradients in browsers != IE when the transparent color wasnât first or last.
Enjoy: