js는 이미지 크기를 균등하게 조정합니다. 이 기능은 웹페이지가 상대적으로 큰 이미지를 로드할 때 웹페이지를 변형시켜 페이지를 보기 흉하게 만드는 경우가 많습니다. 그래서 우리는 초과분을 제어하기 위해 JS를 사용하려고 했습니다. 페이지 레이아웃을 안정화하기 위한 그림입니다. 이 코드 조각은 이 기능을 완성하며 코드는 매우 간결하고 효과는 매우 좋습니다.
<<a href="http://www.php1.cn/">html</a>> <head> <title>等比例缩放图片</title> <script> function DrawImage(ImgD,iwidth,iheight){ //参数(图片,允许的宽度,允许的高度) var image=new Image(); image.src=ImgD.src; if(image.width>0 && image.height>0){ 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; } }else{ if(image.height>iheight){ ImgD.height=iheight; ImgD.width=(image.width*iheight)/image.height; }else{ ImgD.width=image.width; ImgD.height=image.height; } } } } </script> </head> <body> <img src=http://up.2cto.com/2013/0803/20130803034531502.jpg" alt="自动缩放后的效果" width="100" height="100" onload="javascript:DrawImage(this,80,80)" /> </body> </html>