ズーム コード: コードをコピー コードは次のとおりです: ズーム コード: <br>//画像は比例的に拡大縮小されます<br>var flag = false; <br>function DrawImage(ImgD, iwidth, iheight) { <br>//パラメータ (画像、許容される幅、許容される高さ) <br>var image = new Image(); <br>image.src = ImgD.src; <br>if (image.width > 0 && image.height > 0) { <br>flag = true; <br>if (image.width / image.height >= iwidth / iheight) { <br>if (image.width > iwidth) { <br>ImgD.width = iwidth; 🎜> ImgD.height = (image.height * iwidth) / image.width; <br>} else { <br>ImgD.width = image.width; <br>ImgD.height = image.height; <br>ImgD.alt = image.width "×" image.height; <br>} <br>else { <br>if (image.height > iheight) { <br>ImgD.height = iheight; >ImgD .width = (image.width * iheight) / image.height; <br>ImgD.width = image.width; <br>ImgD.height = image.height; 🎜> ImgD.alt = image.width "×" image.height; <br>} <br>} <br>} <br> ページコード: 🎜> 良いと思ったら一言お願いします! ページ コード: 1. 良いと思ったらぜひコメントを残してください!