-1
的$(document)。在( '準備好',contentLockerShow);
該生產線將彈出一個名爲contentLockerWrapper的div在頁面加載時,我只是想拖延彈出20秒,所以我改變了
的$(document)。在('準備',contentLockerShow);
與
的setTimeout(contentLockerShow,20000);
但是contentLockerBackground彈出窗口在包裝和屏幕被鎖定之前彈出apears。
這是功能
function contentLockerShow(){
contentLockerBackground.animate({'opacity':'.6'}, 500);
contentLockerWrapper.fadeIn(500);
if(contentLockerCompleted == false){
contentLockerCompleted = true;
console.log(contentLockerCompleted);
}
希望你會發現這個鏈接有用 http://stackoverflow.com/questions/3468607/why-does-settimeout-break-for-large-millisecond-delay-values –