【精简实用系列】等比例缩放图片JS版本

精简实用10年前 (2015-11-09)16150

<script>
function picResize(obj,width,height){
    wr = obj.width/width;
    hr = obj.height/height;
    if(wr >1&&wr >= hr) obj.width=width;
    if(hr >1&&hr >= wr) obj.height=height;
}
</script>

<img src="http://style.repiankk.com/images/logo.png" onload="picResize(this,220,70)" onerror="javascript:this.src='http://style.repiankk.com/images/blank.png'" alt="热片看看网"/>

发表评论

访客

看不清,换一张

◎欢迎参与讨论,请在这里发表您的看法和观点。