/*
* 이미지 미리 로드 및 자동 확대
* scale 자동으로 같은 비율로 크기를 조정할지 여부
* width 이미지의 최대 높이
* height 이미지의 최대 너비
* loadpic 로드되는 이미지의 경로
* 예시 $("*").LoadImage(true,w, h);
*/
jQuery.fn.LoadImage=function(scaling,width,height,loadpic){
if(loadpic==null )loadpic="../images/loading.gif" ;
return this.each(function(){
var t=$(this);
var src=$(this).attr( "src")
var img=new Image( );
//alert("Loading...")
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);
t.height((img.height*width)/img.width)
t.css ("margin-top", (height-t.height( ))/2);
}else{
t.width(img.width)
t.height(img.height);
t.css("margin-top", ( height-t.height())/2)
}
}
else{
if(img.height>height) {
t.height(높이);
t.width((img.width*height)/img.height)
t.css("margin-top", (height-t.height) ())/2);
}else{
t.width(img.width);
t.height(img.height)
t.css("margin-top", (height-t.height())/2);
}
}
}
}
}
//ff를 처리할 때 캐시된 이미지를 자동으로 읽습니다
if(img.complete){
//alert( "getToCache!");
autoScaling()
return;
}
$(this).attr("src" ,"");
var loading=$("< ;img alt="로드 중..." title="사진 로드 중..." src="" loadpic "" />"); t.hide();
t.after( loading);
$(img).load(function(){
autoScaling();
loading.remove();
t .attr("src",this.src);
t.show();
//alert("마지막으로!")
})
}