如何在视图上创建叠加层

时间:2016-04-27 10:52:18

标签: html css

我正在尝试在我的网页中设置叠加层,但我无法执行此操作。我在视图上设置叠加层的代码如下:



#cover {
    position: fixed;
    top: 0;
    left: 0;
    background: #000;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: none;
    opacity: 0.5;
}

<div id="cover">
    <p>-----</p>
</div>
&#13;
&#13;
&#13;

但我没有得到理想的输出。

1 个答案:

答案 0 :(得分:4)

只需删除display: none,您就可以查看叠加层

<!DOCTYPE html>
<html lang="en">

<head>
  <style type="text/css">
    #cover {
      position: fixed;
      top: 0;
      left: 0;
      background: #000;
      z-index: 1;
      width: 100%;
      height: 100%;
      opacity: 0.5;
    }
  </style>
</head>

<body>
  <div id="cover">
    <p>-----</p>
  </div>
</body>