动态的给容器添加蒙版效果的弹出层

创建测试HTML 结构

CSS 样式编写

.content {
    width: 800px;
    height: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.btn-content {
    height: 50px;
    line-height: 50px;
}
    
.view-content {
    position: absolute;
    top: 50px;
    width: 100%;
    height: 100%;
}

.input-view {
    width: 100%;
    height: 100%;
}

.pop-view {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    opacity: 0.5;
    width: 100%;
    height: 100%;
    background-color: #999;
    filter: alpha(opacity=50);
    display: none;
}

实现 JS 切换方法

function showPopView() {
    let popView = document.getElementById('pop_view');
    popView.style.display = 'block';
}

function hidePopView() {
    let popView = document.getElementById('pop_view');
    popView.style.display = 'none';
}

初始隐藏蒙版的效果

动态的给容器添加蒙版效果的弹出层_第1张图片
可以编辑输入框文字

显示蒙版后的效果

动态的给容器添加蒙版效果的弹出层_第2张图片
不可编辑输入框文字

你可能感兴趣的:(动态的给容器添加蒙版效果的弹出层)