我试图将两个 DIV 相互放置,以便当指针悬停在图片上时,顶部的一个会淡出以显示下面的一个。我在这里做了这个:http: //quaystreet.chrisloughnane.net/
我想让它响应,以便图片可以缩放到移动设备的水平宽度。一张图片没有问题,但是一旦我尝试重新定位下面的 DIV,它就会中断。
http://jsfiddle.net/chrisloughnane/f2NdQ/4/
是否可以仅使用 CSS 来做我想做的事情?
<div id='old'><img src="http://quaystreet.chrisloughnane.net/images/quay-street-old.jpg"/></div>
<div id='new'><img src="http://quaystreet.chrisloughnane.net/images/quay-street-new.jpg"/></div>
img {
max-width: 100%;
display: block;
margin: auto;
}