欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

设置预览图片自适应(保持原比例)

程序员文章站 2022-03-29 18:39:49
...
function resizeImage(image, max) {
    if (Math.max(image.width, image.height) > max) {
        if (image.width > image.height) image.width = max;
        else image.height = max; 
    }
    return true;
}

  

<img οnlοad="var max=64;if(Math.max(this.width,this.height)>max){if(this.width>this.height)this.width=max;else this.height=max;}" src="/test.jpg" />

或者

<img οnlοad="return resizeImage(this,64)" src="/test.jpg" />

转载于:https://www.cnblogs.com/ahui/archive/2011/08/18/2144412.html