效果:

HTML:

<!-- 添加分组按钮 -->
            <div class="group_add" onclick = "document.getElementById('light').style.display='block';document.getElementById('fade').style.display='block'">
                <div class="group_add_icon">+</div>
                <div class="group_add_title">添加分组</div>
            </div>
            <!-- 遮罩层 -->
            <div id="light" class="content_box">
                <div class="content_box_one">添加分组</div>
                <div class="content_box_two">请输入新的分组名称</div>
                <div class="content_box_three">
                    <input type="text" placeholder="请输入分组名称" type="text" class="content_box_three_input">
                </div>
                <div class="content_box_four">
                    <div class="content_box_four_btn1" onclick = "document.getElementById('light').style.display='none';document.getElementById('fade').style.display='none'">取消</div>
                    <div class="content_box_four_btn2">确定</div>
                </div>
            </div>
            <div id="fade" class="black_overlay" onclick = "document.getElementById('light').style.display='none';document.getElementById('fade').style.display='none'"></div>
 
 
CSS(弹出内容、遮罩层样式)
/* 遮罩层 */
.black_overlay{
    display: none;
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 98;
    -moz-opacity: 0.8;
    opacity:.30;
    filter: alpha(opacity=88);
}
.content_box {
    display: none;
    position: absolute;
    overflow: auto;
    width: 76vw;
    height: 40vw;
    background-color: #fff;
    top: 34%;
    left: 12vw;
    z-index: 99;
}
.content_box_one {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    /* font-weight: bold; */
    letter-spacing: 1px;
    margin-top: 3vw;
    text-shadow: 0 0 1px #000;
}
.content_box_two {
    font-size: 14px;
    letter-spacing: 1px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 1vw;
}
.content_box_three {
    width: 80%;
    height: 8vw;
    margin-left: 10%;
    background-color: #ecf6f9;
    border-radius: 20vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 2vw;
}
.content_box_three_input {
    background-color: #ecf6f9;
    outline: none;
    border: none;
    width: 84%;
    /* height: 26px; */
    /* margin-top: 3px; */
    /* margin-left: 5%; */
    font-size: 14px;
    letter-spacing: 1px;
}
.content_box_three_input::-webkit-input-placeholder {
    color: rgb(136, 136, 136);
    font-size: 14px;
}
.content_box_three_input:focus {
    color: #000;
    font-size: 14px;
}
.content_box_three_input:focus{
    border:none;
    font-size: 14px;
}
.content_box_four {
    width: 60vw;
    display: flex;
    flex-direction: row;
    margin-top: 5vw;
    margin-left: 8vw;
}
.content_box_four_btn1 {
    width: 12vw;
    background-color: #fff;
    border: 1px solid rgb(156, 156, 156);
    color: #000;
    margin-left: 12vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0.5vw 0;
    border-radius: 1.5vw;
}
.content_box_four_btn2 {
    width: 12vw;
    background-color: #00b3a8;
    border: 1px solid rgb(156, 156, 156);
    color: #fff;
    margin-left: 12vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0.5vw 0;
    border-radius: 1.5vw;
}
 
 
 
 
参考来源:https://www.jb51.net/article/112380.htm
 

点击弹出div内容包括遮罩层的更多相关文章

  1. js点击弹出div层

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...

  2. 工作当中实际运用(3)——js原生实现鼠标点击弹出div层 在点击隐藏

    function onmou(){ var divs=document.getElementById('kefuDV');//获取到你要操作的div if (divs.style.display==& ...

  3. 使用js弹出div刷新时闪烁解决方法

    <div style="visibility: hidden"> //弹出div内容 </div>

  4. js弹出div层内容(按回退键关闭div层及遮罩)

    <!--弹出的div列表对应的详情--> <div id="newhtml" class="white_content"> <di ...

  5. jQuery实现打开网页自动弹出遮罩层或点击弹出遮罩层功能示例

    本文实例讲述了jQuery实现打开网页自动弹出遮罩层或点击弹出遮罩层功能.分享给大家供大家参考,具体如下: 弹出层:两种方式 一是打开网页就自动弹出层二是点击弹出 <!DOCTYPE html ...

  6. 创建一个弹出DIV窗口

    创建一个弹出DIV窗口 摘自:   http://www.cnblogs.com/TivonStone/archive/2012/03/20/2407919.html 创建一个弹出DIV窗口可能是现在 ...

  7. 点击弹出 +1放大效果 -- jQuery插件

    20140110更新: <!doctype html> <html> <head> <meta charset="UTF-8"> & ...

  8. jquery---点击弹出层

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...

  9. js弹窗 js弹出DIV,并使整个页面背景变暗

    1.首先写一个遮罩层div,然后再写一个弹窗的div <!-- 遮罩层 --> <div id="cover" style="background: # ...

随机推荐

  1. Tomcat-如何在IDEA启动部署web模板

    IDEA部署工程到Tomcat上运行 1,建议修改web工程对应的Tomcat运行实例名称 2,将需要部署的web工程添加到Tomcat运行实例中,添加或删除 Application context: ...

  2. Tomcat-如何创建动态的web工程及目录介绍

    1,IDEA中如何创建动态web工程 (1)创建一个新模块 (2)选择你要创建什么类型的模块 (3)输入模块名,finish完成创建 创建成功如下图: 一般在WEB-INF下建一个lib目录 存放ja ...

  3. PaperRead - A Shader Framework for Rapid Prototyping of GPU-Based Volume Rendering

    PaperRead - A Shader Framework for Rapid Prototyping of GPU-Based Volume Rendering 目录 PaperRead - A ...

  4. linux中yum本地私有仓库安装搭建《全面解析》

    目录 一:yum本地仓库安装 1.yum简介 2.yum安装解析 二:yum安装的生命周期 三:yum私有仓库作用与必要性 四:搭建yum私有仓库 本地版本 1.下载必须的软件包 2.创建软件仓库(就 ...

  5. ApacheCN 捐赠名单 2019

    这是 ApacheCN 的捐赠名单,不是龙哥盟博客的(关于 ApacheCN). 最新的名单请见 https://home.apachecn.org/donate/. 捐赠者 金额(元) 时间 收入类 ...

  6. Android 关于Intent的一些简略总结

    感谢大佬:https://www.jianshu.com/p/19147a69e970 Intent 常用构造方法: | 方法 | 描述 | |Intent() | 构造一个空 Intent | | ...

  7. uniap tab list 滑动

    效果如下 <uni-popup ref="bankListAll" type="dialog"> <ty-mutiple-select :mu ...

  8. 直播流媒体ums

    准备工具 下载  UltrantMediaServer服务器 FlashMediaLiveEncoder测试直播工具 第一步 安装 UltrantMediaServer服务器 第二步 打开网也输入   ...

  9. Express中使用session

    1.安装express-session npm install express-session --save-dev //注意-g无效 2.app.jsvar session = require('e ...

  10. spring boot全局配置文件优先级

    前两篇介绍的application配置文件,即为spring boot全局配置文件.那么spring boot加载配置文件的时候,怎么确定加载哪个目录下哪个文件呢? spring boot默认的配置文 ...