在网络上,我有一个透明层来覆盖点击页面,并且只显示几个页面元素。但我对 z-index 有什么并不重要。该层涵盖了我想展示的一个元素。具有 id 的元素player
应显示在图层上。我应该为此指定什么不同的layer
内容player
?
<div id="layer" style="width: 100%; height: 100%; visibility: visible; z-index: 99;"> </div>
<div id="page" style="margin: 0 auto; position: relative; top: 80px;"> <!-- Begin page div -->
<div id="player" style="width: 506px; height: 377px; border: 2px solid white; z-index: 99999; display: inline; float:left; margin-top: 12px; margin-left: 12px; margin-right:0px; overflow: hidden;">
的样式layer
是这些。
#layer {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
background: black;
filter:alpha(opacity=80);
opacity: 0.80;
z-index: 999;"
}