ホームページ >ウェブフロントエンド >jsチュートリアル >jsはload_image特殊効果時に画像サイズを自動的に調整します
// メソッド: 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 = "クリックすると、新しいウィンドウで元の画像が表示されます。";
}