.delay阻止fadeIn执行

时间:2012-07-18 20:16:27

标签: jquery delay fadein

我似乎无法弄清楚为什么这段脚本会按预期工作,当“.delay(800)”被移除时......但是在其中,“.delay(800)之后的fadeIn” “永远不会被执行。知道为什么吗?

CSS

#stepone, #steptwo, #stepthree, #stepfour, #stepfive, #finish  {
display:none;
}

jQuery脚本

$(document).ready(function(){
    $("#startbutton").click(function() {
        $("#stepone, #steptwo, #stepthree, #stepfour, #stepfive, #finish").fadeOut(800);
        $("#start").delay(800).fadeIn(800);
    });
    $("#steponebutton").click(function() {
        $("#start, #steptwo, #stepthree, #stepfour, #stepfive, #finish").fadeOut(800);
        $("#stepone").delay(800).fadeIn(800);
    });
});

0 个答案:

没有答案