官方教學
http://help.adobe.com/zh_TW/illustrator/cs/using/WS714a382cdf7d304e7e07d0100196cbc5f-6437a.html[……]
jQuery CSS 兩種方法 – 去除超連結虛線框
CSS方法
a{
outline: none; /* for Firefox */
hlbr:expression(this.onFocus=this.blur()); /* for IE */
}
jQuery方法
<script>
jQuery(function($){
$("a").focus(function(){
$(this).blur();
});
});
</script>
[……]
PHP output CSV utf-8 亂碼解決方案
//讓csv輸出時不會有亂碼 function get_output_csv_str($str){ return “xEFxBBxBF”.$str; } 相關文章 http://stackoverflow.com/questions/4348802/how-can-i-output-a-utf-8-csv-in-php-that-excel-will-read-properly[……]
jQuery 物件旋轉效果 animate a div rotation
$(el).stop().animate( {rotation: 360}, { duration: 500, step: function(now, fx) { $(this).css({“transform”: “rotate(“+now+”deg)”}); } } );[……]
jQuery 多層選單 jQuery Dropdown mnu
10個優秀並推薦的 JQuery Select Plugin
免費下載高解析度圖片的 15 個最佳圖庫網站
冰與火之歌網站_網站欣賞
CSS 文字陰影效果
IE10 取代 ieTester 測試ie各版本相容性問題
相信大家在做前端開發的時候,應該都有用過ieTester來測試萬惡的ie吧,
不過透過ieTester秀出來的網頁,跟實際在ie中呈現有時候也會有不太一樣的現象產生,
在 ie10 中其實就內件有測試 ie 相容性的工具「開發人員工具」,供開發人員使用,
不僅如此「開發人員工具」還有很多功能,但此篇不多做介紹。
1.開啟「開發人員工具」,在ie中按F12就可呼叫出「開發人員工具」面版(下圖)。
2.選左側黑條的紅框處,切換模擬功能面版。
3.選擇「模式」,在這裡的模式,其實就是代表ie各版本。
4.選取您要測試的版本,就會用您選定的ie版本進行測試。
^^^^
非常簡單,也不用再另外安裝ieTester囉^^
[……]