我正在寻找一种解决方案,当用户重新调整浏览器窗口的大小并添加缓动动画时,使用 Jquery 来缩放 div 的高度,并稍有延迟。我需要<div>
类.graph
的最小高度为 300px,并且能够在窗口重新大小时增长到 700px。
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;
}