純CSS製作的網頁中的lightbox效果

來源:互聯網
上載者:User

  “Lightbox”是一個別緻且易用的圖片顯示效果,它可以使圖片直接呈現在當前頁面之上而不用轉到新的視窗。lightbox效果網路上有很多js版本的介紹。不過都下載一個lightbox的js小則幾十K,大則上百K。如果你只是需要一個類似Lightbox的效果,這種百分之百純CSS製造,不含js的辦法倒是可以試試。

以下是引用片段:
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDHTML4.01Transitional//EN">
<html>
  <head>
    <title>純CSSLightbox效果</title>
    <style>
    .black_overlay{
      display:none;
      position:absolute;
      top:0%;
      left:0%;
      width:100%;
      height:100%;
      background-color:black;
      z-index:1001;
      -moz-opacity:0.8;
      opacity:.80;
      filter:alpha(opacity=80);
    }
    .white_content{
      display:none;
      position:absolute;
      top:25%;
      left:25%;
      width:50%;
      height:50%;
      padding:16px;
      border:16pxsolidorange;
      background-color:white;
      z-index:1002;
      overflow:auto;
    }
  </style>
  </head>
  <body>
    <p>Thisisthemaincontent.Todisplayalightboxclick<ahref="javascript:void(0)"onclick="document.getElementById('light').style.display='block';document.getElementById('fade').style.display='block'">here</a></p>
    <divid="light"class="white_content">Thisisthelightboxcontent.<ahref="javascript:void(0)"onclick="document.getElementById('light').style.display='none';document.getElementById('fade').style.display='none'">Close</a></div>
    <divid="fade"class="black_overlay"></div>
  </body>
</html>



聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.