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

js automatically adjusts image size when loading_image special effects

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-05-16 19:04:17
Original
1030 people have browsed it

// 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";
}

Related labels:
Statement of this Website
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
Latest Issues
Where is js written?
From 1970-01-01 08:00:00
0
0
0
js file code not found
From 1970-01-01 08:00:00
0
0
0
js addClass not working
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template