码迷,mamicode.com
首页 > 其他好文 > 详细

一个简单的遮罩层

时间:2019-01-12 12:13:16      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:oct   hide   简单的   javascrip   body   关闭   isp   none   html   

比较简单,实用

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
    <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
    <style>
        * {
            padding: 0;
            margin: 0;
        }

        .box {
            position: fixed;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.2);
            display: none;
        }

        .box1 {
            width: 500px;
            height: 500px;
            position: fixed;
            left: 50%;
            top: 25%;
            margin-left: -250px;
            border: 1px solid #000000;
        }
    </style>
    <script>

    </script>
</head>
<body>
    <div class="box">
        <div class="box1">
            <a href="javascript:;" onclick="jQuery(‘.box‘).hide()" class="close">关闭</a>
        </div>
    </div>
    <a href="javascript:;" onclick="jQuery(‘.box‘).show()" class="show">显示</a>
</body>
</html>

 

一个简单的遮罩层

标签:oct   hide   简单的   javascrip   body   关闭   isp   none   html   

原文地址:https://www.cnblogs.com/lunawzh/p/10258982.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!