我的博客博客上有一个Facebook灯箱,当用户打开我的网站时会立即显示,但我希望它在页面加载(30秒或1分钟)后延迟几秒后弹出。 这是我弹出的jquery代码。
<!-- 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 :(得分: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>