在网页的整个宽度中显示图像

时间:2014-08-06 07:40:41

标签: html css

我有一个包含images.Images的滑块根据设置自动滑动。我的图像大小为2000*400。现在我希望我的图像以网页的整个宽度显示但是它显示在中间网页。 这是HTML ..

   <div id="sliderFrame">
    <div id="slider">
        <img src="images/1.jpg" alt="" />
        <img src="images/2.jpg" alt="" />

    </div>
    </div>   

这是Css ..

 #sliderFrame 
  {
  position:relative;
  width:100%;

  }

 #slider, #slider div.sliderInner {
 width:100%;height:400px;/* Must be the same size as the slider images */
 }

#slider {
background:#fff url(loading.gif) no-repeat 50% 50%;
position:relative;
margin:0 auto; /*center-aligned*/
transform: translate3d(0,0,0);
box-shadow: 0px 1px 5px #999999;
}

/* image wrapper */
#slider a.imgLink, #slider div.video {
z-index:2;
position:absolute;
top:0px;left:0px;border:0;padding:0;margin:0;
width:100%;height:100%;
}
#slider .video {
background:transparent url(video.png) no-repeat 50% 50%;
}

/* Caption styles */
#slider div.mc-caption-bg, #slider div.mc-caption-bg2 {
position:absolute;
width:100%;
height:auto;
padding:10px 0;/* 10px will increase the height.*/
left:0px; /*if the caption needs to be aligned from right, specify by right instead of left. i.e. right:20px;*/
bottom:0px;/*if the caption needs to be aligned from top, specify by top instead of bottom. i.e. top:150px;*/
z-index:3;
overflow:hidden;
font-size: 0;
}
#slider div.mc-caption-bg 
 {
/* NOTE: Its opacity is to be set through the sliderOptions.captionOpacity setting in the js-image-slider.js file.*/
background:Black;/* or any other colors such as White, or: background:none; */
}
#slider div.mc-caption-bg2 {
background:none;
}
#slider div.mc-caption {
font: bold 14px/20px Arial;
color:#EEE;
z-index:4;
text-align:center;
background:none;
}
#slider div.mc-caption a {
color:#FB0;
}
#slider div.mc-caption a:hover {
color:#DA0;
}


/* ------ built-in navigation bullets wrapper ------*/
/* Note: check themes\2\js-image-slider.css to see how to hide nav bullets */
#slider div.navBulletsWrapper  {
top:320px;/* Its position is relative to the #slider */
text-align:center;
background:none;
position:relative;
z-index:5;
}

/* each bullet */
#slider div.navBulletsWrapper div 
{
width:11px; height:11px;
font-size:0;color:White;/*hide the index number in the bullet element*/
background:transparent url(bullet.png) no-repeat 0 0;
display:inline-block; display:inline; zoom:1;
overflow:hidden;cursor:pointer;
margin:0 6px;/* set distance between each bullet*/
}

#slider div.navBulletsWrapper div.active {background-position:0 -11px;}


/* --------- Others ------- */

#slider div.loading 
{
width:100%; height:100%;
background:transparent url(loading.gif) no-repeat 50% 50%;
filter: alpha(opacity=60);
opacity:0.6;
position:absolute;
left:0;
top:0; 
z-index:9;
}

#slider img, #slider>b, #slider a>b {
position:absolute; border:none; display:none;
}

#slider div.sliderInner {
overflow:hidden; 
-webkit-transform: rotate(0.000001deg);/* fixed the Chrome not crop border-radius bug*/
position:absolute; top:0; left:0;
}

#slider>a, #slider video, #slider audio {display:none;}

请帮帮我。

提前致谢..

2 个答案:

答案 0 :(得分:1)

移除滑块上的宽度,使其占据整个宽度。并使用自动高度将图像的宽度设置为100%。这将缩放图像以填充宽度。

#sliderFrame {
    position: relative;
    /* width: 2000px; */
}
#sliderFrame img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

答案 1 :(得分:1)

尝试使用:

#slider img
{
   width:100%;
}