我正在开发一个网站,我必须在其中显示图片(不是问题)。但是,我必须将它显示为这个链接:http ://buildinternet.com/project/supersized/slideshow/3.2/demo.html
所以,在调整大小时,我必须放大图片以从不缩放它。有人知道怎么做吗?
这是我所拥有的:
html:
<div id="container_images">
<ul>
<li><img src="images/desktop/myimage.jpg" alt="An awesome image"></li>
</ul>
</div>
CSS:
#container_images{
display: block;
position: fixed;
left: 0;
top: 0;
overflow: hidden;
z-index: -999;
height: 100%;
width: 100%;
}
#container_images li{
display: block;
list-style: none;
z-index: -30;
position: fixed;
overflow: hidden;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity:1;
}
#container_images li img{
width: 100%;
height: 100%;
display: block;
}