
這jquery plugin 在用戶按下link的時候,自動放上一個loading的圖示。由於各種原因,往往要花上幾秒鐘的時間開啟網頁,這plugin幫你加上loading的圖示,使用戶清楚明白他正在等待網頁的開啟。由於很易理解,筆者就不多作解說了。
Download: jquery.MyLoading.js
Demo: MyLoading
License: MIT License
jQuery Code:
$(function(){
/* BASIC Usage */
$("a").MyLoading();
/* Advanced Usage */
$("a").MyLoading({
loadingImgPath: 'load.gif',
bFadeoutPage: true
});
});