• [转载][HTML] 普通的DIV分层以及版透明效果


    来源忘记哪的了,我稍微做了点修改,想了想还是挂了转载的标签,嗯嗯:

    <html> 
    <head>
    <title>EXAMPLE</title>
    </head>
        <body>
            <p>可以根据自己要求修改css样式<a href = "javascript:void(0)" onclick = "document.getElementById('light').style.display='block';document.getElementById('fade').style.display='block'">点击这里打开窗口</a></p>
            <div id="light" style="display:none;position:absolute;top: 25%;left:25%; 50%;height:50%;padding:16px;border:16px solid orange;background-color:white;z-index:2;overflow:auto;">
             This is the lightbox content. 
            <a href = "javascript:void(0)" onclick = "document.getElementById('light').style.display='none';document.getElementById('fade').style.display='none'">Close</a>
            </div>
            <div id="fade" style="display:none;position:absolute;top:0%;left:0%;100%;height:100%;background-color:black;z-index:1;-moz-opacity:0.8;opacity:.80;filter:alpha(opacity=80);">
            </div>
        </body>
    </html>
  • 相关阅读:
    Splay复习
    带权并查集复习-HDU3038
    罗素悖论-图灵停机问题
    数独解法c++实现
    状压DP NOI2001 炮兵阵地
    区间第k大数
    分块随笔T2
    分块感想
    webkit的高级属性
    设计模式
  • 原文地址:https://www.cnblogs.com/Liangw/p/3165088.html
Copyright © 2020-2023  润新知