1.大小图片通吃
function DownImage(ImgD){
var image=new Image();
image.src=ImgD.src;
if(image.width>0 && image.height>0){
//flag=true;
if(image.width>=300){
ImgD.width=300;
ImgD.height=(image.height*300)/image.width;
}else{
ImgD.width=image.width;
ImgD.height=image.height;
}
}
}
图片如果宽度不大于300,原始大小显示,否则缩放大小。
2.真对大图片
<script language="javascript">
//图片处理函数
function changeImageSize(img) {
if(img.height > 90 || img.width > 90){
if(img.height >= img.width){
img.height=90;
} else {
img.width=90;
}
}
}
</script>
更多的JS好用的图片缩放代码请到论坛查看: http://BBS.TC711.COM
【 双击滚屏 】 【 评论 】 【 收藏 】 【 打印 】 【 关闭 】
来源:
互联网
日期:2006-9-28