我有一个DIV容器。我需要用另一个半透明层覆盖它。所以,我认为我能做到的方式是通过几个步骤:
这是我的代码:
$('.myEm').clone().empty().addClass('semi').height(initEmHeight).insertAfter(this).css({ 'top' : pos.top + 'px', 'left' : pos.left + 'px', 'z-index' : '99'});
直到我开始添加CSS才有效。我错过了什么?
答案 0 :(得分:1)
您可以使用CSS伪元素创建叠加层,如下所示,无需手动克隆或定位。例如:
$("button").click(function () {
$(this).parent().addClass("overlay");
alert("click");
});

#content {
position: relative;
width: 150px;
height: 100px;
background: dodgerblue;
}
#content.overlay::after {
content: "";
display: block;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: rgba(255, 255, 255, 0.5);
}

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="content">
<button>click!</button>
</div>
&#13;
您可以通过在overlay
添加和删除课程#content
来控制叠加层。