移动端实现遮罩对话框

实现原理:

 点击某一控件实现遮罩弹出会话框 原理就是点击后弹出两个div样式 。其中一个就是遮罩层  给他添加透明度即可实现遮罩,另一个就是对话框内容

 

身份验证
  • 获取验证码

 

 

.mask{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    background: rgba(0,0,0,0.3);
    z-index: 99;
    display: none;
}

.input_informatino{
    width: 80%;
    height: auto;
    position: absolute;
    top: 25%;
    left: 10%;
    z-index: 100;
    display: none;
    padding: 0px 10px;
    background-color: #ffffff;
}
.information_title{
    width: 100%;
    height: 50px;
    line-height: 50px;
}
.information_title span{
    font-size: 15px;
    color: #212121;
}
.information_title i{
    float: right;
}
.information_content ul li{
    width: 100%;
    height: 55px;
    position: relative;
    line-height: 55px;
    margin-top: 5px;
    float: left;
    border: thin solid #e0e0e0;
}
.information_content ul li i{
    width: 10%;
    float: left;
    text-align: right;
    font-size: 20px;
}
.information_content ul li input{
    width: 90%;
    height: 50px;
    font-size: 13px;
    line-height: 50px;
    float: left;
    color: #adadad;
    border: none;
}
.information_content ul li span{
    position: absolute;
    top: 0;
    right: 10px;
    color: #6591e0;
    font-size: 13px;
    border-left: thin solid #e0e0e0;
    padding-left: 10px;
}
.msmcode{
    width: 50%;

}
.information_content button{
    width: 100%;
    background-color: #6591e0;
    height: 40px;
    line-height: 40px;
    color: #ffffff;
    margin-top: 10px;
    margin-bottom: 20px;
}


 

 

 

你可能感兴趣的:(前端,css)