ホームページ >ウェブフロントエンド >jsチュートリアル >jsはload_image特殊効果時に画像サイズを自動的に調整します

jsはload_image特殊効果時に画像サイズを自動的に調整します

WBOY
WBOYオリジナル
2016-05-16 19:04:17972ブラウズ

// メソッド: setSelectReadOnly は、選択コントロール ReadOnly を設定するために使用されます。
// これは読み取り専用をシミュレートしますが、実際には読み取り専用ではありません
// onbeforeactivate、onfocus、onmouseover、onmouseout イベントを使用します
//例 : ;
// sl で作成
//---------------------------- - ------------------
function ImgAutoSize(imgD,FitWidth,FitHeight)
{
var image1=new Image(); .onload = function ()
{
if(this.width>0 && this.height>0)
{
if(this.width/this.height>= FitWidth/FitHeight)
{
{
imgd.width = this.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 = "クリックすると、新しいウィンドウで元の画像が表示されます。";
}

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。