欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

js 圖片縮放(按比例)控制代碼

 更新時間:2009年05月27日 14:44:45   作者:  
js 圖片縮放(按比例)實現(xiàn)代碼。
縮放代碼:
復(fù)制代碼 代碼如下:

縮放代碼:
<script type="text/javascript">
//圖片按比例縮放
var flag = false;
function DrawImage(ImgD, iwidth, iheight) {
//參數(shù)(圖片,允許的寬度,允許的高度)
var image = new Image();
image.src = ImgD.src;
if (image.width > 0 && image.height > 0) {
flag = true;
if (image.width / image.height >= iwidth / iheight) {
if (image.width > iwidth) {
ImgD.width = iwidth;
ImgD.height = (image.height * iwidth) / image.width;
} else {
ImgD.width = image.width;
ImgD.height = image.height;
}
ImgD.alt = image.width + "×" + image.height;
}
else {
if (image.height > iheight) {
ImgD.height = iheight;
ImgD.width = (image.width * iheight) / image.height;
} else {
ImgD.width = image.width;
ImgD.height = image.height;
}
ImgD.alt = image.width + "×" + image.height;
}
}
}
</script>
頁面代碼:
<img onload="javascript:DrawImage(this,89,63)" src="http://www.dbjr.com.cn/images/logo.gif" width="89" height="63" border="0" />
覺得不錯的發(fā)個言!


頁面代碼:
1. <img onload="javascript:DrawImage(this,89,63)" src="http://www.baidu.com/img/baidu_logo.gif" width="89" height="63" border="0" />
覺得不錯的發(fā)個言!

相關(guān)文章

最新評論