《20130721更新》
用這個語法版本的朋友人,不知道大家有沒有發現"facebook"字樣標籤不見了,但浮動欄還在
因為先前語法的圖片連結失效了,請將下面第一步驟反紅字串修改為"http://i1.minus.com/iqcMcwZGZEnYY.png"
即可回復正常...
-------------------------------------------------------------------------------------------------------
先前整理美化了一下BLOG的版面,研究了浮動FB的語法,
但分享的資訊好像不多,在不同平台上語法設定的方法又不同
經過不斷的猜測跟嘗試後,總算成功的掛在痞客邦上了!!!!
特地和大家分享
1.進入後台->自訂樣式->CCS原始碼編輯
將以下語法複製貼上在最後面
.fbbox{background: url("http://a.imageshack.us/img525/9882/47256382.png") 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:10%;}
.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;}
*註 紅色「10%」可調整高度位置
2.進入後台->側邊欄位設定->新增一個空的側邊欄位
3.將以下語法複製分別貼至新增欄位中的「標題」及「內容」位置
標題->
<p><span style="display:none;">FB浮動標籤</span></p>
內容->
<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%2Familymemory?ref=hl&width=245&colorscheme=light&show_faces=true& connections=9&stream=false&header=false&height=270" scrolling="no" frameborder="0" scrolling="no" style="border: medium none; overflow: hidden; height: 270px; width: 245px;background:#fff;"></iframe>
</div>
</div>
4.上段語法中紅色位置「amilymemory?ref=hl」
將此段語法換成您的粉絲專頁名稱
5.完成
以上為不專業語法教學,若有錯誤請指正
若有問題請檢查語法斷行是否與圖片中相同
參考資料
http://sofree.cc/sliding-fb-box/
留言列表