固定枠内へ画像を合わせる(javascript)

縦・横いろいろなサイズの画像を枠内へ収めるjavascript

<script>
function resize(e) {
var size = { width:300, height:200 };
var w = size.width / e.width;
var h = size.height / e.height;
if (w > h) w = h;
e.width *= w;
}

<HTML>
<img src="hoge.jpg" onload="resize(this)">

Thanks for installing the Bottom of every post plugin by Corey Salzano. Contact me if you need custom WordPress plugins or website design.

コメントを残す