Heim > Web-Frontend > js-Tutorial > Hauptteil

图片按比例缩放函数_JavaScript

WBOY
Freigeben: 2016-05-16 19:28:40
Original
827 Leute haben es durchsucht
以下是程序代码:
<script><BR><!--<BR>//图片按比例缩放<BR>var flag=false;<BR>function DrawImage(ImgD,iwidth,iheight){<BR> //参数(图片,允许的宽度,允许的高度)<BR> var image=new Image();<BR> image.src=ImgD.src;<BR> if(image.width>0 && image.height>0){<BR> flag=true;<BR> if(image.width/image.height>= iwidth/iheight){<BR> 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> ImgD.alt=image.width+"×"+image.height;<BR> }<BR> else{<BR> if(image.height>iheight){ <BR> ImgD.height=iheight;<BR> ImgD.width=(image.width*iheight)/image.height; <BR> }else{<BR> ImgD.width=image.width; <BR> ImgD.height=image.height;<BR> }<BR> ImgD.alt=image.width+"×"+image.height;<BR> }<BR> }<BR>} <BR>//--><BR></script>
调用:图片按比例缩放函数_JavaScript
Verwandte Etiketten:
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage