views:

39

answers:

1
+5  Q: 

jQuery: Color fade

+2  A: 

You seem to have almost answered your own question: The xcolor plugin you point to has exactly the method you want:

$.xcolor.gradientlevel(color, color, position, size)

Your example would be:

$.xcolor.gradientlevel("#000000", "#ffffff", 50, 100)
Ned Batchelder