添加遮罩弹窗

Posted bagnliu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了添加遮罩弹窗相关的知识,希望对你有一定的参考价值。

添加遮罩弹窗

css:

<style>
#headul{
  width: 100%;
  height: 100%;
  position: absolute;
  top:0;
  left: 0;
  display: none;
}
.mask{
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
}
.mask_content{
  width: 450px;
  height: 260px;
  background-color: #fff;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -150px;
  margin-left: -250px;
  z-index: 99999;
  padding: 0px;
  text-align: center;
}
.mask_content h2{
  color: #da251c;
  font-size: 40px;
}
.mask_content a{
  margin-top: 30px;
  display: block;
  width: 300px;
  height: 70px;
  line-height: 70px;
  background-color: #da251c;
  color: #fff;
  text-decoration: none;

}
</style>

html:

<div class="headul" id="headul">
  <div class="mask"></div>
  <div  class="mask_content">
    <h2>恭喜您,激活成功!</h2>
    <a href="#">下一步</a>
  </div>
</div>

js:

 

<script>
  $(function(){
    $("#aaa").click(function(){
      $("#headul").show();
    })
  })
</script>

 

以上是关于添加遮罩弹窗的主要内容,如果未能解决你的问题,请参考以下文章

背景为透明黑幕的遮罩弹窗

js带有遮罩的弹窗

如何设置jquery layer弹窗弹层位置

Flutter弹窗弹窗的快速上手使用和自定义Dialog

atom 使用 linter 检查语法时,阻止底部弹窗弹出

jquery layer弹窗弹层插件 (转)