痞客邦pixnet部落格設定側邊出現浮動動態臉書facebook的likebox教學
如何在痞客邦pixnet部落格設定側邊出現浮動動態臉書facebook的likebox按鈕呢?
歷經網路google學習及測試後,只要按下列步驟,就可以完成設定
1.上傳您所要的FB浮動標籤圖片,如下圖所示~
2.在自訂樣式CSS最底端加入下列語法
痞客邦 CSS語法
http://pic.pimg.tw/dreammaker88/1385216825-3865907938.jpg ==>換成自己要的圖片連結
.fbbox{background: url("http://pic.pimg.tw/dreammaker88/1385216825-3865907938.jpg") no-repeat scroll left center transparent !important;display: block;float: right;height: 270px;padding: 0 5px 0 46px;width: 245px;z-index: 99999;position:fixed;right:-250px;top:20%;}
.fbbox div{border:none;position:relative;display:block;}
.fbbox span{bottom: 12px;font: 8px "lucida grande",tahoma,verdana,arial,sans-serif;position: absolute;right: 6px;text-align: right;z-index: 99999;}
.fbbox span a{color: #808080;text-decoration:none;}
.fbbox span a:hover{text-decoration:underline;}
3.在側邊欄位新增語法
放側邊欄位語法
粉絲專頁有內容語法+按讚人員大頭照~語法
Sharehealthinformationè修改成自己的分絲專頁簡短網址
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$(".fbbox").hover(function(){
$(this).stop().animate({right: "0"}, "medium");
}, function(){
$(this).stop().animate({right: "-250"}, "medium");
}, 500);
});
</script>
<div class="fbbox" style="">
<div>
<iframe src="https://www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Ffacebook.com%2Fsharehealthinformation&width=300&height=500&colorscheme=light&show_faces=true& header=true&stream=true&show_border=true" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:300px; height:590px;background:#fff;"></iframe>
</div>
</div>
粉絲專頁只有按讚人員大頭照~語法
Sharehealthinformationè修改成自己的分絲專頁簡短網址
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$(".fbbox").hover(function(){
$(this).stop().animate({right: "0"}, "medium");
}, function(){
$(this).stop().animate({right: "-250"}, "medium");
}, 500);
});
</script>
<div class="fbbox" style="">
<div>
<iframe src="https://www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Ffacebook.com%2Fsharehealthinformation&width=300&height=500&colorscheme=light&show_faces=true& connections=9&stream=false&header=false&height=500" scrolling="no" frameborder="0" scrolling="no" style="border: medium none; overflow: hidden; height: 300px; width: 500px;background:#fff;"></iframe>
</div>
</div>
轉載自 http://dreammaker88.pixnet.net/blog/post/101747217
留言列表