我有这条线
$(document).on('ready', contentLockerShow);
该行将在页面加载时弹出一个名为 contentLockerWrapper 的 div,我只想将弹出窗口延迟 20 秒,所以我更改了
$(document).on('ready', contentLockerShow);
和
设置超时(contentLockerShow,20000);
但是 contentLockerBackground 在包装器之前弹出,并且屏幕在弹出窗口出现之前被锁定。
这是功能
function contentLockerShow(){
contentLockerBackground.animate({'opacity':'.6'}, 500);
contentLockerWrapper.fadeIn(500);
if(contentLockerCompleted == false){
contentLockerCompleted = true;
console.log(contentLockerCompleted);
}