2011年8月29日 星期一

Chrome&火狐 瀏覽Facebook的即時聊天 添加表情符號

這是一個JS腳本,火狐用戶請安裝 Greasemonkey 或是 Scriptish 來管理JS腳本。
Google瀏覽器用戶建議ver.10以上版本。不用安裝擴展可直接安裝JS腳本

Facebook Chat Emoticons Bar

安裝位址:http://userscripts.org/scripts/show/50826
Google瀏覽器使用者直接點選「Install with鈕」即可安裝,
安裝完若沒效果請重新開啟瀏覽器看看。



效果:


如圖所示,安裝完聊天視窗會多出一排表情符號這樣聊天會不會比較nice呢?

Facebook 表情符號大全


你是不是經常使用 Facebook 的聊天功能?那你又知不知道如何輸入表情符號呢?除了一些常用的 =D =P =) =( 之外,其實還有許多你從未用過的表情哦,趕快打開你的 facebook 試試吧!!

讚語法


推文按鈕必須新增到每篇文章、或是每個頁面,才能發揮功能。如果你使用 WordPress 架站,只需要開啟佈景主題裡的 single.php 檔案,並將以下原始碼貼在適當的位置。

<iframe src="http://www.facebook.com/plugins/like.php?href=<?php echo urlencode(get_permalink());?>&layout=standard&show_faces=true&width=450&height=60&action=like&colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none;overflow:hidden;width:450px;height:60px"></iframe>

自動調整IFRAM


iframe在網頁應用相當的廣泛,但由於先天的限制下

以至於高度以及寬度都只能依所設定的大小為主

但經由後天的調整下,讓iframe也能依載入網頁內容的多寡

自動調整框架大小,iframe也是可以很smart的喔!

製作方法:

1. iframe.htm


<iframe frameborder="0" src="source.htm" id="frameid"></iframe>


2.source.htm(加在<head>….</head>之間 
<script language="javascript">
function reSize(){
parent.document.all.frameid.height=document.body.scrollHeight;
}
window.onload=reSize;
</script>

浮動式網址facebook留言版語法


 <div id='fb_Social_Plugins_Comments'></div>
<script src='http://connect.facebook.net/zh_TW/all.js#xfbml=1'></script>
<script language='javascript'>
document.getElementById('fb_Social_Plugins_Comments').innerHTML
="<div id='fb-root'></div>"
+"<fb:comments href='"+location.href+"' num_posts='5' width='550'></fb:comments>";
</script>