在處理網頁圖片時,特別是一些圖片列表的應用裡面,很難保證圖片統一大小,直接設置圖片大小又會導致圖片拉伸,造成圖片模糊,本文介紹的代碼可以在圖片加載完成後自動按比例調整圖片大小。
? type="text/javascript">
// 說明:用JavaScript 實作網頁圖片等比例縮放// 整理:http://www.CodeBit.cn function DrawImage(ImgD,FitWidth,FitHeight) { var image=new Image(); image.src=ImgD.src; if(image.width>0 && image.height>0 ) {
if(image.width/image.height>= FitWidth/FitHeight)
{
if(image.width>FitWidth)
{
ImgD.width=FitWidth ;
ImgD.height=(image.height*FitWidth)/image.width;
}
else
{
ImgD.width=image.width;
ImgD.height=ImgD.height=ImgD.height=ImgD.height image.height;
}
}
else
{
if(image.height>FitHeight)
{
ImgD.height=Height; =(image.width*FitHeight)/image.height;
}
else
{
ImgD.width=image.width;
ImgD.height=image.height;
}
}
}
}
//-->
呼叫方式:
Code:
複製程式碼
程式碼如下:
如果圖片較大,建議在圖片標籤裡面同時設定期望的圖片大小,這樣不會導致頁面在加載中撐開,該大小不會影響最終縮放效果。可以修改上面的程式碼為:
Code: 複製程式碼
程式碼如下:
程式碼如下: