0

「.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);
    });
});
4

0 に答える 0