国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

js 加載時自動調整圖片大小

2019-11-21 01:44:27
字體:
來源:轉載
供稿:網友
//  方法:setSelectReadOnly  用于設定極select控件ReadOnly,
//        這個一個模擬只讀不是真的只讀
//        使用了onbeforeactivate,onfocus,onmouseover,onmouseout事件
//    示例:< img src='img.jpg' onload='ImgAutoSize(ImgD,FitWidth,FitHeight)' > ;
//  create by sl 
// ---------------------------------------------------
function ImgAutoSize(imgD,FitWidth,FitHeight) 
{
var image1=new Image(); 
image1.onload = function ()
{
    if(this.width>0 && this.height>0) 
    { 
        if(this.width/this.height>= FitWidth/FitHeight) 
        { 
            if(this.width>FitWidth) 
            { 
                imgD.width=FitWidth; 
                imgD.height=(this.height*FitWidth)/this.width; 
            } 
            else 
            { 
                imgD.width=this.width; 
                imgD.height=this.height; 
            } 
        } 
        else 
        { 
            if(this.height>FitHeight) 
            { 
                imgD.height=FitHeight; 
                imgD.width=(this.width*FitHeight)/this.height; 
            } 
            else 
            { 
                imgD.width=this.width; 
                imgD.height=this.height; 
            } 
        } 
    }
    image1 = null;
}

image1.src=imgD.src; 
imgD.style.cursor = 'hand';
imgD.onclick= function(){openWin(this.src,'imgphoto',600,400)};
imgD.title = "點擊在新窗口中查看原圖";
}
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 桐乡市| 且末县| 皋兰县| 上思县| 武城县| 和顺县| 自治县| 西昌市| 仲巴县| 贵溪市| 五大连池市| 萝北县| 兴城市| 濉溪县| 汽车| 千阳县| 清涧县| 龙口市| 新民市| 旅游| 卓资县| 永平县| 巴南区| 称多县| 定南县| 甘德县| 宁化县| 双鸭山市| 尤溪县| 专栏| 望城县| 凤冈县| 南和县| 大理市| 阿巴嘎旗| 芦山县| 青神县| 元谋县| 商南县| 广灵县| 赤城县|