图片按比例缩放函数_JavaScript

WBOY
リリース: 2016-05-16 19:28:40
オリジナル
827 人が閲覧しました
以下是程序代码:
<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
関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート