基于jquery的图片尺寸调整
resize.js
代码如下:
@H_301_7@ maxWidth){
ratio = maxWidth / width;
$(this).css("width",maxWidth);
$(this).css("height",height * ratio);
height = height * ratio;
}
var width = $(this).width();
var height = $(this).height();
if(height > maxHeight){
ratio = maxHeight / height;
$(this).css("height",maxHeight);
$(this).css("width",width * ratio);
width = width * ratio;
}
});
//$("#contentpage img").show();
// IMAGE RESIZE
});