2014-10-19 40 views
0

我的博客博客上彈出了一個facebook燈箱,當用戶打開我的網站時,它會立即出現,但我希望它在頁面延遲幾秒後彈出加載(30秒或1分鐘)。 這是我彈出的jQuery代碼。facebook燈箱jquery在博客中彈出延遲30秒

<!-- popup plug-in snippet --> 
<script type='text/javascript'> 
//<![CDATA[ 
//grab user's browser info and calculates/saves first visit 
jQuery.cookie = function (key, value, options) { if (arguments.length > 1 && String(value) !== "[object Object]") { options = jQuery.extend({}, options); if (value === null || value === undefined) { options.expires = -1; } 
if (typeof options.expires === 'number') { var days = options.expires, t = options.expires = new Date(); t.setDate(t.getDate() + days); } value = String(value); return (document.cookie = [encodeURIComponent(key), '=', options.raw ? value : encodeURIComponent(value), options.expires ? '; expires=' + options.expires.toUTCString() : '', options.path ? '; path=' + options.path : '', options.domain ? '; domain=' + options.domain : '', options.secure ? '; secure' : ''].join('')); } 
options = value || {}; var result, decode = options.raw ? function (s) { return s; } : decodeURIComponent; return (result = new RegExp('(?:^|;)' + encodeURIComponent(key) + '=([^;]*)').exec(document.cookie)) ? decode(result[1]) : null; }; 
// the pop up actions 
//$(function ($) { 
jQuery(document).ready(function($){ 
    if ($.cookie('popup_fb') != 'yes') { 
    $('#fb-back').delay(2000).fadeIn("slow"); // options slow or fast 
    $('#fb-close, #fb-exit').click(function() { 
     $('#fb-back').stop().fadeOut("slow"); // options slow or fast 
    }); 
} 
//initiate popup function by setting up the cookie expiring time 
$.cookie('popup_fb', 'yes', { path: '/', expires: 0 }); 
}); 
//]]> 

請幫助任何人。

+0

jQuery的(文件)。就緒(函數(){ 的setTimeout(函數(){ jQuery.lightbox(「www.mydomain.com/popup.html?lightbox[width]=650&lightbox[height]= 480「); },10000); });只是你會嘗試這個代碼,這只是例子 – cfprabhu 2014-10-19 11:47:45

+0

請參閱這個---> https://forum.jquery.com/topic/delay-of-popup-on-page-load – cfprabhu 2014-10-19 11:49:35

+0

我不擅長編碼? – 2014-10-19 11:56:15

回答

0
<script type='text/javascript'> 
//<![CDATA[ 
jQuery.cookie = function (key, value, options) { if (arguments.length > 1 && String(value) !== "[object Object]") { options = jQuery.extend({}, options); if (value === null || value === undefined) { options.expires = -1; } 
if (typeof options.expires === 'number') { var days = options.expires, t = options.expires = new Date(); t.setDate(t.getDate() + days); } value = String(value); return (document.cookie = [encodeURIComponent(key), '=', options.raw ? value : encodeURIComponent(value), options.expires ? '; expires=' + options.expires.toUTCString() : '', options.path ? '; path=' + options.path : '', options.domain ? '; domain=' + options.domain : '', options.secure ? '; secure' : ''].join('')); } 
options = value || {}; var result, decode = options.raw ? function (s) { return s; } : decodeURIComponent; return (result = new RegExp('(?:^|;)' + encodeURIComponent(key) + '=([^;]*)').exec(document.cookie)) ? decode(result[1]) : null; }; 
$(function ($) { 
jQuery(document).ready(function($){ 
    if ($.cookie('popup_fb') != 'yes') { 
    $('#fb-back').delay(30000).fadeIn("slow"); // options slow or fast 
    $('#fb-close, #fb-exit').click(function() { 
     $('#fb-back').stop().fadeOut("slow"); // options slow or fast 
    }); 
} 
$.cookie('popup_fb', 'yes', { path: '/', expires: 0 }); 
}); 
//]]> 
</script>