テクニカル雑記帳です
display:none の時のimgサイズ
へーと思ったのでメモ。
display:none の時のimgサイズは 0*0pix になる
表示中のサイズ
非表示中のサイズは0になる
ソースはこんな感じ
<body>
<div class="wrap">
<button id="item">さーばる</button>
<button id="reset" style="display: none;">もどす</button>
<div style="margin-top: 1em;">
<img alt="さーばる" src="animal_serval.png" style="display: none; height: 30%;">
</div>
</div>
<script>
$('#item').click(function () {
$(this).hide();
$('img').show();
$('#reset').show();
});
$('#reset').click(function () {
$(this).hide();
$('img').hide();
$('#item').show();
});
</script>
</body>