JavaScript等比例缩放图片
程序员文章站
2022-03-08 16:49:27
...
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>
上一篇: JavaScript正则表达式小技巧
推荐阅读
-
php图片缩放代码-按比例缩放或截取指定大小的缩略图 非常好用的一个方法_PHP教程
-
原生javascript图片自动或手动切换示例附演示源码_javascript技巧
-
javascript实现图片懒加载实例
-
怎样在JavaScript添加图片
-
javascript如何让图片自动变换
-
js实现图片无缝滚动特效_javascript技巧
-
HTML5 Canvas实现图片缩放、翻转、颜色渐变的代码示例_html5教程技巧
-
iOS利用UIScrollView实现图片的缩放实例代码
-
Android开发之imageView图片按比例缩放的实现方法
-
iOS应用开发中使用UIScrollView控件来实现图片缩放