<!--
//slt.js开始
//图片等比例缩小
function DrawImage(ImgD,kw,kh)
{
var image=new Image();
image.src=ImgD.src;
if(image.height<image.width)//说明宽》高==》以宽为标准
{
if(image.width>kw)
{
ImgD.width=kw;
ImgD.height=(image.height*kw)/image.width;
}
}
else//以高为标准
{
if(image.height>kh)
{
ImgD.height=kh;
ImgD.width=(image.width*kh)/image.height;
}
}
}
// -->
调用例子:
<script language="javascript" src="slt.js"></script>
<img src="1_68.jpg" border="0" οnlοad='javascript:DrawImage(this,50,69);'>
//slt.js开始
//图片等比例缩小
function DrawImage(ImgD,kw,kh)
{
var image=new Image();
image.src=ImgD.src;
if(image.height<image.width)//说明宽》高==》以宽为标准
{
if(image.width>kw)
{
ImgD.width=kw;
ImgD.height=(image.height*kw)/image.width;
}
}
else//以高为标准
{
if(image.height>kh)
{
ImgD.height=kh;
ImgD.width=(image.width*kh)/image.height;
}
}
}
// -->
调用例子:
<script language="javascript" src="slt.js"></script>
<img src="1_68.jpg" border="0" οnlοad='javascript:DrawImage(this,50,69);'>