美文网首页前端
模态框实例

模态框实例

作者: leomei91 | 来源:发表于2017-06-19 16:38 被阅读0次

代码:

<style>
        .hide{
            display:none;
        }
        .c1{
            position:fixed;
            left:0;
            right:0;
            top:0;
            bottom:0;
            background-color:black;
            opacity: 0.8;
            z-index:9;
        }
        .c2{
            width:500px;
            height:430px;
            background-color:white;
            position:fixed;
            left:50%;
            top:50%;
            margin-left:-250px;
            margi-top :-250px;
            z-index:10;
            
        }
    </style>
<div>
    <input type="button" value="添加主机"onclick="show();"/>
    <table>
        <tr>
            <th>主机名</th>
            <th>端口</th>
        </tr>
        <tr>
            <td>127.0.0.1</td>
            <td>80</td>
        </tr>
        <tr>
            <td>192.168.1.11</td>
            <td>8080</td>
        </tr>
        <tr>
            <td>10.17.32.12</td>
            <td>8088</td>
        </tr>
    </table>
    <!--灰幕-->
    <div class="c1 hide" id="i1">
    </div>
    <!--弹出框-->
    <div class="c2 hide" id="i2">
    <input type="text" /><br />
    <input type="text" />
    <div>
    <input type="button" value="取消"  onclick="hide();"/>
    <input type="button" value="确定" />
    </div>
    </div>
    </div>
    
    <script>
        function show(){
            document.getElementById('i1').classList.remove('hide');
            document.getElementById('i2').classList.remove('hide');
        }
        function hide(){
            document.getElementById('i1').classList.add('hide');
            document.getElementById('i2').classList.add('hide');
        }
    </script>

相关文章

  • 模态框实例

    代码:

  • 第十三节 MFC的一些概念

    一、模态对话框和非模态对话框Windows对话框分为两类:模态对话框和非模态对话框。模态对话框是这样的对话框,当它...

  • element-ui dialog组件嵌套bug

    模态框嵌套模态框 只需在子集的模态框里面添加append-to-body 就可以了 父级模框 子集模态框 我这样嵌...

  • 进阶任务10-事件应用

    实现Tab切换的功能 实现下图的模态框功能,点击模态框不隐藏,点击关闭以及模态框以外的区域模态框隐藏

  • bootstrap模态框多层嵌套,背景滚动

    问题:在弹出模态框A的基础上,弹出模态框B,关闭模态框B之后,模态框A不能滚动(由于A模块框内容) 造成的原因:遮...

  • web端模态框实例

    一:html 二:css

  • 事件的应用

    1. 实现如下图Tab切换的功能 2. 实现下图的模态框功能,点击模态框不隐藏,点击关闭以及模态框以外的区域模态框隐藏

  • 进阶任务10

    1.实现如下图Tab切换的功能 2.实现下图的模态框功能,点击模态框不隐藏,点击关闭以及模态框以外的区域模态框隐藏

  • 事件的应用

    1.实现如下图Tab切换的功能: 2.实现下图的模态框功能,点击模态框不隐藏,点击关闭以及模态框以外的区域模态框隐藏

  • 小程序自定义模态框model

    自定义模态框,点击左侧模态框可以关闭显示

网友评论

    本文标题:模态框实例

    本文链接:https://www.haomeiwen.com/subject/zstnqxtx.html