Home  >  Article  >  Web Front-end  >  js automatically adjusts image size when loading_image special effects

js automatically adjusts image size when loading_image special effects

WBOY
WBOYOriginal
2016-05-16 19:04:17955browse

// Method: setSelectReadOnly is used to set the select control ReadOnly,
// This simulates read-only and is not really read-only
// Uses onbeforeactivate, onfocus, onmouseover, onmouseout events
// Example : ;
// 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)
     {                                                                                                       
else
{
imgD.width=this.width;
imgD.height=this.height;                                                                             (this.height>FitHeight)
                                                                                                                                                                                                                                                                               {
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 = "Click to view the original image in a new window";
}

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn