jQuery.fn.LoadImage=function(scaling,width,height,loadpic){
if(loadpic= =null)loadpic="../img/loading.gif";
return this.each(function(){
var t=$(this);
var src=$(this).attr("src")
var img=new Image() ;
img.src=src;
//自動縮放圖片
var autoScaling=function(){
if(scaling){
if(img.width>0 && img.height > ;0){
if(img.width/img.height>=寬度/高度){
if(img.width>width){
t.width(width); .height*width )/img.width);
}else{
t.width(img.width);
t.height(img.height)
}
else{
if( img.height>height){
t.height(height);
t.width((img.width*height)/img.height);
}else{
t.width( img.width)
t.height(img.height); //處理ff下會自動讀取圖片
if(img.complete){
autoScaling();
}
$(this).attr( "src",""); >var loading=$("
" );
t.hide(); 🎜>t.after(加載);
$(img).load(function(){
autoScaling();
loading.remove () ;
t.attr("src", this.src);
t.show()
} );
}
腳本>
腳本>