怎麽在Blogger加入Facebook Pop Up LikeBox

科技先锋队 於 07/08/2015 發表 收藏文章
開齋節假期終於有時間為科技先鋒隊加入Pop Up Facebook LikeBox。在網路上有各種各樣的Pop Up Likebox,然而並不是每一個都適用,還得視乎於你所使用的Blogger Template。不適合用的甚至使到你的Blogger完全變形。這裏介紹一個非常簡潔容易的Facebook Pop Up Likebox,同時也適用於大多數目前網絡上有的Blogger Template。
首先,進入你的Blogger Dashboard > Layout > Add a Gadget > HTML/JavaScript。
把以下的HTML拷貝復制進去:
引用
<style scoped='' type='text/css'>
#fb-fanbox {display:none;background:rgba(0,0,0,0.9);width:100%;height:100%;position:fixed;top:0;left:0;z-index:99999;-webkit-transform:translateZ(0);}
#fb-boxclose {width:100%;height:100%;-webkit-transform:translateZ(0);}
#fb-boxview {background:#fff;border:8px solid #03a9f4;width:410px;height:230px;position:absolute;top:33%;left:37%;border-radius:3px;}
#fb-closebox {float:right;cursor:pointer;position:absolute;right:-1px;top:-2px;z-index:2;}
#fb-closebox:before {content:"CLOSE";padding:5px 8px;background:#03a9f4;color:#fff;font-weight:normal;font-size:10px;font-family:inherit;}
#fb-boxlink,#fb-boxlink a.visited,#fb-boxlink a,#fb-boxlink a:hover {color:#aaaaaa;font-size:9px;text-decoration:none;text-align:center;padding:5px;}
</style>
<script type='text/javascript'>
//<![CDATA[
jQuery.cookie = function (key, value, options) {
// Pengaturan cookie
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() : '', // use expires attribute, max-age is not supported by IE
options.path ? '; path=' + options.path : '',
options.domain ? '; domain=' + options.domain : '',
options.secure ? '; secure' : ''
].join(''));
}
// Dapatkan cookie
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;
};
//]]>
</script>
<script type='text/javascript'>
jQuery(document).ready(function($){
if($.cookie('popup_facebook_box') != 'yes'){
$('#fb-fanbox').delay(1000).fadeIn('fast');
$('#fb-closebox, #fb-boxclose').click(function(){
$('#fb-fanbox').stop().fadeOut('fast');
});
}
});
</script>
<div id='fb-fanbox'>
<div id='fb-boxclose'>
</div>
<div id='fb-boxview'>
<div id='fb-closebox'>
</div>
<iframe allowtransparency='true' frameborder='0' scrolling='no' src='//www.facebook.com/plugins/likebox.php?
href=https://www.facebook.com/kejixianfengdui&width=410&height=255&colorscheme=light&show_faces=true&show_border=false&stream=false&header=false'
style='border:none;overflow:hidden;width:410px;height:200px;'></iframe><center>
<span id="linkit"><a href="http://kejixianfengdui.blogspot.com">科技先锋队</a></span></center>
</div>
</div>
然後在HTML裏找"https://www.facebook.com/kejixianfengdui"然後換上你的Facebook URL。

如果你不要像本人的部落格那樣沒打開一頁都PopUp Facebook Likebox而只是在第一次打開Pop Up的話,先找到以下HTML code:
引用$('#fb-fanbox').stop().fadeOut('fast');
});
}
找到之後,在以上的HTML code下面加上這一段:
引用$.cookie('popup_facebook_box', 'yes', { path: '/', expires: 7 });
如果你要調整Facebook Likebox什麽時候Pop Up,調整delay(1000)的數據即可。
標籤: facebook  脸书  面子书  部落格  blogger  likebox  page  

留言


請按此登錄後留言。未成為會員? 立即註冊
    快捷鍵:←
    快捷鍵:→