Node.js는 이미지 크기를 비례적으로 조정합니다. 웹 페이지가 상대적으로 큰 이미지를 로드할 때 종종 웹 페이지가 변형되어 페이지가 보기 흉해집니다. 그래서 우리는 JS를 사용하여 특정 범위를 넘어서는 이미지를 제어할 것을 생각했습니다. , Script House는 페이지 레이아웃을 안정화합니다. 이 코드 조각은 이 기능을 완성하며 코드가 매우 간결하고 효과가 매우 좋습니다.
< ;title> 이미지 크기를 비례적으로 조정합니다<script>function <br>DrawImage(ImgD,iwidth,iheight){ //매개변수(이미지, 허용 너비, 허용 높이) <br>var <br>image=new Image(); image.src=ImgD.src; <br>if(image.width>0 <br>&& image.height>0){ if(image.width/image.height>= <br>iwidth/iheight ){ if(image.width>iwidth){ <br>ImgD.width=iwidth; <br>ImgD.height=(image.height*iwidth)/image.width) <br>}else{ <br>ImgD. width=image.width; <br>ImgD.height=image.height; <br>} <br>}else{ <br>if(image.height>iheight){ <br>ImgD.height=iheight; >ImgD.width=(image.width*iheight)/image.height; <br>}else{ <br>ImgD.width=image.width; <br>ImgD.height=image.height <br>} 🎜>} <br>} <br>} <br></script>
src=http://www.jb51.net/uploadfile /2013/0803/20130803034531502.jpg"
alt="자동 크기 조정 후 효과"
width="100"
height="100"
onload ="javascript:DrawImage(this,80,80)"
/>