ユーザーがブラウザウィンドウのサイズを変更し、少し遅れて簡単なアニメーションを追加したときに、Jqueryを使用してdivの高さをスケーリングするソリューションを探しています。最小の高さを 300 ピクセルにし、ウィンドウのサイズ変更時に 700 ピクセルに拡張できるようにするには <div>
、クラスを使用する必要があります。.graph
HTML
<div id="slide1" class="current">
<div class="graph resize">
This is where a SVG graph would go
</div>
</div>
CSS
body,html{
margin:0;
height:100%;
}
.current{
height:100%;
min-height:750px;
position:relative;
background:#ccc;
padding:5px;
}
.graph{
position:absolute;
width:950px;
min-height:300px;
background:#fafafa;
box-shadow: 0 1px 0 1px #DAD8D8;
}