我目前有这个工作小提琴 - http://jsfiddle.net/B8Abd/
我想在函数期间使用 jquery 淡出然后淡入。目前的代码是这样的:
function changetoYellow() {
//change the color of the div
createGradientV([0, 0, 0], [255, 255, 0], 7, 200);
}
我想要这样的东西:
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);
}
谢谢你。