首页 相关文章 JS图片压缩–图片后加载后按比例缩放

JS图片压缩–图片后加载后按比例缩放

原理:图片加载完后把图片的尺寸固定在一个固定的范围之内。。

JS Code:

script type="text/javascript"

var proMaxHeight=100;
var proMaxWidth=100;


function ImgAuto(ImgD)
{
var image=new Image();
image.src=ImgD.src;
image.onload = function(){
if(image.width0&&image.height0)
{
var rate=(proMaxWidth/image.widthproMaxHeight/image.height)?proMaxWidth/image.width:proMaxHeight/image.height;
if(rate=1)
{
ImgD.width=image.width*rate;
ImgD.height=image.height*rate
}
else
{
ImgD.width=image.width;
ImgD.height...[ 查看全文 ]

2016-02-19 标签:

JS图片压缩–图片后加载后按比例缩放的相关文章

手机页面
收藏网站 回到头部