画像サイズを変更するするサンプルです。
サンプルソース
例)ボタンを押すと画像の高さを100pxにする。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="utf-8"> <title>サンプル</title> <script> function resizeImage(){ //画像オブジェクトを取得する var obj = document.images['imginu']; //画像の高さを100pxにする obj.height = 100; } </script> </head> <body> <input type="button" value="ボタン" onclick="resizeImage()"> <img src="inu.png" id="imginu"> </body> </html> |
解説
- 縦横比は保たれたままで、指定サイズにリサイズされます。
- 画像サイズの横幅を指定したい場合は、.widthを使用します。
例)obj.width = 100;