I currently have this working fiddle - http://jsfiddle.net/B8Abd/
I would like to use jquerys fade out, then fade during function. Code at the moment:
function changetoYellow() {
I would like to have something like this:
function changetoYellow() { //fade to black: $("#fadeBandsV").fadeOut(1000); //change the color of the div createGradientV([0, 0, 0], [255, 255, 0], 7, 200); //fade from black: $("#fadeBandsV").fadeIn(1000); }
Thanks.
source share