我正在寻找一种延迟Jquery弹出窗口的方法
嗨,
我对Jquery的公证很好,所以我一直在寻找一种方法,可以将弹出窗口延迟几秒钟再弹出。目前,Jquery正在使用cookie,所有这些都很棒。但是我不知道如何在弹出之前将其延迟大约5秒钟。
有人可以帮忙吗?
jQuery('.close').click(function(){
jQuery('#popup-container').fadeOut();
jQuery('#active-popup').fadeOut();
});
var visits = jQuery.cookie('visits') || 0;
visits++;
jQuery.cookie('visits', visits, { expires: 1, path: '/' });
console.debug(jQuery.cookie('visits'));
if ( jQuery.cookie('visits') > 1 ) {
jQuery('#active-popup').hide();
jQuery('#popup-container').hide();
} else {
var pageHeight = jQuery(document).height();
jQuery('#popup-container').show(0).delay(5000);
}
如果有人可以帮助我解决我的代码,那就太好了。
答案 0 :(得分:0)
将CSS更改为默认隐藏
#popup-container{
display: none;
width: 500px;
height: 600px;
position: fixed;
bottom: 0;
right: 0;
z-index: 999;
}
和javascript
if (jQuery.cookie('visits') > 1) {
jQuery('#active-popup').hide();
// jQuery('#popup-container').hide();
}
else {
var pageHeight = jQuery(document).height();
setTimeout(function() {
jQuery('#popup-container').show();
}, 5000);
}