码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript练习 - 模态对话框

时间:2018-10-26 19:36:53      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:hide   har   pac   splay   height   tom   html   模态对话框   addclass   

模态对话框练习

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        body{
            margin: 0;
        }
        .hide{
            display: none;
        }
        .a1{
        }
        .a2{
            position:fixed;
            left:0;
            top:0;
            right:0;
            bottom:0;
            background-color:black;
            opacity:0.6;
            z-index:9;
        }
        .a3{
            width:500px;
            height:400px;
            background-color:white;
            position:fixed;
            left:50%;
            top:50%;
            margin-left:-250px;
            margin-top:-200px;
            z-index:10;
        }
    </style>
</head>
<body>
    <div class="a1 ">
        <input type="button" value="按钮" onclick="f1()">
    </div>
    <div class="a2 hide"></div>
    <div class="a3 hide">
        <input type="button" value="按钮" onclick="f2()">
    </div>
<script src="jquery-1.12.4.min.js"></script>


<script>
    function f1() {
        $(.a2).removeClass(hide).parent().children(.a3).removeClass(hide);
    }
    function f2() {
        $(.a2).addClass(hide).parent().children(.a3).addClass(hide);
    }
</script>
</body>
</html>

 

JavaScript练习 - 模态对话框

标签:hide   har   pac   splay   height   tom   html   模态对话框   addclass   

原文地址:https://www.cnblogs.com/Anec/p/9857755.html

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