2

我正在使用jQuery Owl Carousel我创建了一个图像滑块,我想在其中在滑块图像上添加背景颜色。

2019 年的注意事项:http : //owlgraphic.com现在重定向到恶意站点。

这是标记:

 <!-- HEADER-02 CONTENT -->
<div class="header-02-sub">

<!-- SLIDER STARTS HERE -->
<div id="owl-slider" class="owl-carousel owl-theme">

          <div class="item">
            <img src="http://placehold.it/1600x700" alt="The Last of us">
            <div class="caption">

             <h1>SOME TITLE HERE</h1>

            </div>               
          </div>
         <div class="item">
            <img src="http://placehold.it/1600x700" alt="The Last of us">
             <div class="caption">

             <h1>SOME TITLE HERE</h1>

            </div>          
          </div>
          <div class="item">
            <img src="http://placehold.it/1600x700" alt="The Last of us">
            <div class="caption">

             <h1>SOME TITLE HERE</h1>

            </div>     
          </div>

        </div>
  <!-- SLIDER ENDS HERE -->      


 </div>

 <!-- END HEADER-02 CONTENT -->

我已经添加了这个 CSS :

.header-02-sub {
background-color:red;
z-index:9999999;
witdth:100%;
height:100%;
}

我也尝试过将此代码添加到#owl-slider父级,或者.item这些都不起作用。

这是一个jsbin

关于如何在幻灯片图像上添加背景颜色的任何建议?

4

1 回答 1

5

将一个绝对定位的 DIV(我们称之为.overlay)添加到.item元素中,然后使用标记这个新的 DIV

.overlay{
  position: absolute;
  top: 0px;
  left: 0px;
  height: 700px;
  width: 1600px;
  background-color: red;
  opacity: 0.5;
}

更新:

If your page is responsive, add position: relative to .item and then change .overlay height and width to 100%

.item{
  position: relative;
}
.overlay{
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  background-color: red;
  opacity: 0.5;
}

New JSBin

于 2014-08-07T15:02:28.727 回答