MP3免費下載 – 安裝版及免安裝版 – 取代Foxy
http://www.azofreeware.com/2013/04/mp3jam-1006-mp3.html[……]
在網頁中加入 icon 小圖示
製作一個16*16px 或 32*32px 的圖片,將圖片轉存成 icon格式,但icon的圖片格式必需為.icon的格式,其餘檔案格式則無法正確顯示icon,圖片轉存 icon 的方式請見文章下方延伸閱讀。
2.
在 head 中加入下方link標籤,紅色為 icon 圖片路徑,相對路徑絕 / 對路徑都可,但icon的圖片格式必需為.icon的格式,其餘檔案格式則無法顯示icon
<head>
<link href=”templates/img/icon.ico” rel=”Shortcut Icon” type=”image/x-icon”></link>
</head>
[……]
Photoshop支援ico檔 – Photoshop直接另存ico檔
網頁中要加入icon小圖示的HTML語法,請見文章下方延伸文章。
1.下載 PS ico編碼的 plug-in
http://www.telegraphics.com.au/sw/
選擇PS的版本下載32bit/64bit都有支援
2.
解壓縮後複製 ICOFormat64.8bi 檔
貼到 C:Program FilesAdobeAdobe Photoshop CS6 (64 Bit)Plug-ins ( 以Photoshop CS6為例 )。
有的版本資料夾名稱可能是 ( 增效模組 或 Plug-ins )
3.
完成後請重新啟動Photoshop,在另存新檔的地方就有.ICO的檔案格式了。
[……]
jQuery 第一個欄位Focus
jQuery 按Enter submit送出表單並清除系統音效
$(“#form”).keypress(function(event) { if (event.which == 13){ event.preventDefault(); $(this).submit(); } }); 加event.preventDefault();可清除瀏覽器Enter的預設事件~ 按下Enter送出表單時才不會觸發「噹」的系統音效~[……]
jQuery MaxImage 2.0 random option not randomizing the first image 第一張圖無法隨機
在MaxImage 2中幻燈片切換的特效是使用jQuery Cycle Plugin,
而在MaxImage 2下載的Demo中引入的是jQuery Cycle Version: 2.9998版本,
第一張圖無法隨機,應該是jQuery Cycle Version: 2.9998版的bug,
更新jQuery Cycle Plugin至最新版本就可以解決^^
Should be a bug
Please download the latest version
jQuery Cycle Plugin
http://jquery.malsup.com/cycle/download.html
[……]
jQuery Cycle Plugin random option not randomizing the first image 第一張圖無法隨機
應該是bug, dowload最新版本即可解決
Should be a bug
Please download the latest version
jQuery Cycle Plugin
http://jquery.malsup.com/cycle/download.html[……]
jQuery CSS 基本範例
// 設定一個CSS Style用法
$(“.test > div”).css(“display”,”block”);
// 設定一組CSS Style用法
$(“.v_b_img > div”).css({
‘opacity’: 0,
‘top’: ‘100%’,
});[……]
jQuery 自訂動畫 Animate 基本範例
$(‘.v_b_img’).mouseover(function(e){
$(this).children(‘div’).stop().animate({
‘opacity’: 1,
‘top’: 0
},{
duration:400,
easing:’easeOutQuint’,
complete : function(){}
});
});
jQuery Animate Easing 速查表
http://easings.net/zh-tw[……]
jQuery animate easing 速查表

[……]