當(dāng)前位置:首頁(yè)文章首頁(yè) IT學(xué)院 IT技術(shù)

關(guān)于ASP控制圖片顯示大小的實(shí)例代碼分享

作者:  來(lái)源:  發(fā)布時(shí)間:2011-6-25 11:28:06  點(diǎn)擊:

下面提供給大家的是關(guān)于ASP控制圖片顯示大小的實(shí)例代碼分享,希望能夠給大家?guī)?lái)幫助或啟發(fā)。

<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<script language="java script">
<!--
var flag=false;
function DrawImage(ImgD){
var image=new Image();
image.src=ImgD.src;
if(image.width>0 && image.height>0){
flag=true;
if(image.width/image.height>= 164/112){
if(image.width>164){
ImgD.width=164;
ImgD.height=(image.height*164)/image.width;
}else{
ImgD.width=image.width;
ImgD.height=image.height;
}
ImgD.alt=image.width+"x"+image.height;
}
else{
if(image.height>112){
ImgD.height=112;
ImgD.width=(image.width*112)/image.height;
}else{
ImgD.width=image.width;
ImgD.height=image.height;
}
ImgD.alt=image.width+"x"+image.height;
}
}
}
//-->
</script>
</HEAD>
<BODY>
<a href="./img.jpg" target="_blank"><img src="./img.jpg" border="0" width="164" height="112" onload="java script:DrawImage(this);"></a>
</BODY>
</HTML>

相關(guān)軟件

相關(guān)文章

文章評(píng)論

軟件按字母排列: A B C D E F G H I J K L M N O P Q R S T U V W X Y Z