我正在使用jQuery Owl Carousel
我创建了一个图像滑块,我想在滑块图像上添加背景颜色。
这是标记:
<!-- 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
有关如何在幻灯片图片上添加背景颜色的任何建议?
答案 0 :(得分:3)
将绝对定位的DIV(我们称之为.overlay
)添加到.item
元素中,然后使用
.overlay{
position: absolute;
top: 0px;
left: 0px;
height: 700px;
width: 1600px;
background-color: red;
opacity: 0.5;
}
<强>更新强>
如果您的网页有效,请将position: relative
添加到.item
,然后将.overlay
的身高和宽度更改为100%
.item{
position: relative;
}
.overlay{
position: absolute;
top: 0px;
left: 0px;
height: 100%;
width: 100%;
background-color: red;
opacity: 0.5;
}