0
我想動畫(function handleScreen(mql)
)運行完成後,頁面(#splash,#name
)在1秒後淡出。我試圖添加一個.promise
函數,但這似乎不起作用。任何幫助將非常感激。 https://jsfiddle.net/Dar_T/eqdk82ru/1/動畫結束後的淡出頁面
handleScreen(mql).promise().done(function() {
setTimeout(function() {
$("#name,#splash").fadeOut("slow");
}, 1000);
});
我給一個嘗試(https://jsfiddle.net/Dar_T/eqdk82ru/)。儘管淡化似乎沒有發生。腳本在所有縮小的js之後處於底部。 – user2252219