博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
添加遮罩弹窗
阅读量:5960 次
发布时间:2019-06-19

本文共 1019 字,大约阅读时间需要 3 分钟。

添加遮罩弹窗

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>

 

转载于:https://www.cnblogs.com/bagnliu/p/7903699.html

你可能感兴趣的文章
深入浅出JavaScript (五) 详解Document.write()方法
查看>>
用XSLT和XML改进Struts
查看>>
Beta冲刺——day6
查看>>
Comet OJ - Contest #3 题解
查看>>
[网络流24题-9]试题库问题
查看>>
jquery选择器详解
查看>>
C# 保留2位小数
查看>>
使用xshell远程连接Linux
查看>>
杭电ACM1007
查看>>
faster-RCNN台标检测
查看>>
Unix环境高级编程 centos中配置apue编译环境
查看>>
运算符
查看>>
数据结构之各排序算法
查看>>
网页分帧操作<frameset>,<iframe>标签
查看>>
Vue生产环境部署
查看>>
酒店之王
查看>>
html5判断用户摇晃了手机(转)
查看>>
VS下Qt4.8.4安装
查看>>
Linux df命令
查看>>
redhat6.5 配置使用centos的yum源
查看>>