调整窗口大小时如何使图像流动?
我有这样的 HTML 代码:
<div class="box">
<img src="http://demo.smooththemes.com/magazon/wp-content/uploads/2013/01/984632486_9d8ff89b63_b-642x336.jpg" />
</div>
和 CSS :
.box {width:150px; height:60px; position:relative; overflow:hidden}
.box img{position:absolute; width:180px; height:80px; top:-10px; left:-10px}
调整窗口大小时,我想删除 (.box img):top:-10px; left:-10px
和属性 more : 的属性min-width:100%, max-width:100%
。这意味着我们有:
.box img{
position:absolute;
width:180px; height:80px; min-width:100%;
top:(removed); left:(removed)}
我怎样才能用 Javascript 或 Jquery 做到这一点。谢谢你的帮助。