4

我目前有这个工作小提琴 - 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);
       }

谢谢你。

4

1 回答 1

7

这个怎么样:

function changetoYellow() {
    $("#fadeBandsV").fadeOut(1000, function() {
        createGradientV([0, 0, 0], [255, 255, 0], 7, 200);
        $("#fadeBandsV").fadeIn(1000);
    });
}

演示:http: //jsfiddle.net/B8Abd/1/

于 2012-05-10T12:53:43.493 回答