JS遮罩层弹框效果

mm2015 2021-09-06 原文


JS遮罩层弹框效果


对于前端开发者来说,js是不可缺少的语言。现在我开始把我日常积累的一些js效果或者通过搜索自己总结的一些效果分享给大家,希望能够帮助大家一起进步,也希望大家能够多多支持!

1、今天我先分享一个遮罩层弹框效果:

<!DOCTYPE html PUBLIC “-//W3C//DTDXHTML 1.0 Transitional//EN””http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”> 

   <html xmlns=”http://www.w3.org/1999/xhtml”> 

   <head> 

   <meta http-equiv=”Content-Type” content=”text/html;charset=utf-8″ /> 

   <title>弹出提示</title> 

   <style> 

    *{margin:0;padding:0;font-size:12px;} 

   html,body {height:100%;width:100%;} 

   #content {background:#FFFFFF;padding:30px;height:100%;} 

   #content a {font-size:30px;color:#369;font-weight:700;} 

   #alert {border:1px solid#369;width:300px;height:150px;background:#e2ecf5;z-index:1000;position:absolute;display:none;} 

   #alert h4 {height:20px;background:#369;color:#fff;padding:5px 0 05px;} 

   #alert h4 span {float:left;} 

   #alert h4 span#close{margin-left:210px;font-weight:500;cursor:pointer;} 

   #alert p {padding:12px 0 0 30px;} 

   #alert p input {width:120px;margin-left:20px;} 

   #alert p input.myinp {border:1px solid #ccc;height:16px;} 

   #alert p input.sub {width:60px;margin-left:30px;} 

   </style> 

   </head> 

   <body> 

   <div id=”content”> 

   <a href=”#”>注册</a> 

   </div> 

   <div id=”alert”> 

   <h4><span>现在注册</span><span id=”close”>关闭</span></h4> 

   <p><label> 用户名</label><input type=”text”class=”myinp” onmouseover=”this.style.border=\’1px solid#f60\'” onfoucs=”this.style.border=\’1px solid #f60\'”onblur=”this.style.border=\’1px solid #ccc\'” /></p> 

   <p><label> 密 码</label><input type=”password”class=”myinp” onmouseover=”this.style.border=\’1px solid#f60\'” onfoucs=”this.style.border=\’1px solid #f60\'”onblur=”this.style.border=\’1px solid #ccc\'” /></p> 

   <p><input type=”submit” value=”注册”class=”sub” /><input type=”reset” value=”重置”class=”sub” /></p> 

   </div> 

   <script type=”text/javascript”> 

   var myAlert = document.getElementById(“alert”); 

   var reg = document.getElementById(“content”).getElementsByTagName(“a”)[0]; 

   var mClose = document.getElementById(“close”); 

   reg.onclick = function() 

   { 

   myAlert.style.display = “block”; 

   myAlert.style.position = “absolute”; 

   myAlert.style.top = “50%”; 

   myAlert.style.left = “50%”; 

   myAlert.style.marginTop = “-75px”; 

   myAlert.style.marginLeft = “-150px”; 

   mybg = document.createElement(“div”); 

   mybg.setAttribute(“id”,”mybg”); 

   mybg.style.background = “#000”; 

   mybg.style.width = “100%”; 

   mybg.style.height = “100%”; 

   mybg.style.position = “absolute”; 

   mybg.style.top = “0”; 

   mybg.style.left = “0”; 

   mybg.style.zIndex = “500”; 

   mybg.style.opacity = “0.3”; 

   mybg.style.filter = “Alpha(opacity=30)”; 

    document.body.appendChild(mybg); 

   document.body.style.overflow = “hidden”; 

   } 

   mClose.onclick = function() 

   { 

   myAlert.style.display = “none”; 

   mybg.style.display = “none”; 

   } 

   </script> 

   </body> 

   </html> 

posted on
2015-07-13 13:41 
舞纷菲 
阅读(406
评论(0
编辑 
收藏 
举报

 

版权声明:本文为mm2015原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/mm2015/p/4642673.html

JS遮罩层弹框效果的更多相关文章

随机推荐

  1. Mac OS X 中一些常用的命令行技巧

    一、网络设置相关 1、网卡的物理地址的动态重置 出于某些需求,例如网络中的 IP 地址或网络帐号与网卡物理地址 […]...

  2. 自动生成程序-快速建表,批量创建数据元素和域

    未经本人许可,禁止转载和用于商业用途!   更新说明(2020-01-09) BUG修复: 1.数据元素标题的 […]...

  3. 程序员修炼之道

      大概是四五年前的时候,当时看到的推荐的书单里,看到这本《程序员的修炼之道》,因为当时还是学生,对未来要成为 […]...

  4. Windows Server 搭建企业无线认证(Radius认证方案)

    认证协议介绍: 扩展认证协议EAP(Extensible Authentication Protocol) 是 […]...

  5. [Ubuntu]在Ubuntu下搭建自己的源服务器

    1、摘要     网上有很很多关于搭建源镜像的文章,但是对于一般人来讲,用不着镜像所有的deb包,只对我们能用 […]...

  6. 外网访问自己电脑服务器 – zhubenshuli

    外网访问自己电脑服务器 外网访问自己电脑服务器   有时候我们希望从外网访问自己电脑ftp,apache等服务 […]...

  7. Shiro权限管理框架详解 – existmars

    Shiro权限管理框架详解 2019-06-06 15:16  existmars  阅读(2188)  评论 […]...

  8. 在Kubernetes上运行有状态应用:从StatefulSet到Operator

        一开始Kubernetes只是被设计用来运行无状态应用,直到在1.5版本中才添加了StatefulSe […]...

展开目录

目录导航