博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
js相关
阅读量:6223 次
发布时间:2019-06-21

本文共 474 字,大约阅读时间需要 1 分钟。

οnlοad="DrawImage(this,162,125)"

function DrawImage(ImgD,w,h)
{
    var image=new  Image();  
    image.src=ImgD.src;
    if(image.width>0  &&  image.height>0)
    {
        if(image.width/image.height>= w/h)
        {
            if(image.width>w)
                ImgD.width=w;
            else
            {
                ImgD.width=image.width;
                ImgD.height=image.height;
            }
        }
        else
        {
            if(image.height>h)
                ImgD.height=h;
            else
            {
                ImgD.width=image.width;
                ImgD.height=image.height;
             }
        }
    }
}

posted on
2015-04-07 18:04 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/kuair/p/4398990.html

你可能感兴趣的文章
《途客圈创业记》读书笔记
查看>>
grep 匹配 以什么开头的内容
查看>>
使用蒙版制作动画
查看>>
windows安装lxml
查看>>
数据库中间件 MyCAT 源码分析 —— SQL ON MongoDB
查看>>
document.documentElement.clientwidth和document.body
查看>>
django orm中利用annotate进行group by
查看>>
CSS3———— animate(),transtion,transfrom.translate()
查看>>
[转载]JAVA中int、String的类型转换
查看>>
C语言的一些常用代码
查看>>
Java对象创建方式及JVM对字符串处理
查看>>
ubuntu 安装php7
查看>>
Service服务详解以及如何使service服务不被杀死
查看>>
Swift:在Safari中打开App
查看>>
windbg断点
查看>>
深入理解PHP原理之变量(Variables inside PHP)
查看>>
JDK版本8u191与8u192的区别
查看>>
qt常见错误
查看>>
移植Qt4.8.4项目到QT5.2上时遇到的一些问题
查看>>
Dot Graphviz Manual
查看>>