首页 > 语言 > JavaScript > 正文

javascript实现点击按钮弹出一个可关闭层窗口同时网页背景变灰的方法

2024-05-06 16:20:11
字体:
来源:转载
供稿:网友

这篇文章主要介绍了javascript实现点击按钮弹出一个可关闭层窗口同时网页背景变灰的方法,涉及javascript鼠标事件及页面元素样式操作的相关技巧,需要的朋友可以参考下

本文实例讲述了javascript实现点击按钮弹出一个可关闭层窗口同时网页背景变灰的方法。分享给大家供大家参考。具体分析如下:

这里点击按钮后,弹出一个可关闭的层窗口,随之网页背景变灰,在QQ网站上经常会看到QQ登录的效果,就和这个很类似,代码段基于JavaScript,根据你的情况使用,有时候是用CSS完成的这种功能。

 

 
  1. <html> 
  2. <head> 
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
  4. <title>弹出一个层,页面变灰</title> 
  5. <script language="javascript"
  6. function alertWin(title, msg, w, h){  
  7. var titleheight = "23px"// 窗口标题高度  
  8. var bordercolor = "#336699"// 提示窗口的边框颜色  
  9. var titlecolor = "#FFFFFF"// 窗口标题颜色  
  10. var titlebgcolor = "#336699"// 窗口标题背景色 
  11. var bgcolor = "#FFFFFF"// 提示内容的背景色 
  12. var iWidth = document.documentElement.clientWidth;  
  13. var iHeight = document.documentElement.clientHeight;  
  14. var bgObj = document.createElement("div");  
  15. bgObj.style.cssText = "position:absolute;left:0px;top:0px;width:"+iWidth+"px;height:"+Math.max(document.body.clientHeight, iHeight)+"px;filter:Alpha(Opacity=30);opacity:0.3;background-color:#000000;z-index:101;"
  16. document.body.appendChild(bgObj);  
  17. var msgObj=document.createElement("div"); 
  18. msgObj.style.cssText = "position:absolute;font:11px '宋体';top:"+(iHeight-h)/2+"px;left:"+(iWidth-w)/2+"px;width:"+w+"px;height:"+h+"px;text-align:center;border:1px solid "+bordercolor+";background-color:"+bgcolor+";padding:1px;line-height:22px;z-index:102;"
  19. document.body.appendChild(msgObj); 
  20. var table = document.createElement("table"); 
  21. msgObj.appendChild(table); 
  22. table.style.cssText = "margin:0px;border:0px;padding:0px;"
  23. table.cellSpacing = 0; 
  24. var tr = table.insertRow(-1); 
  25. var titleBar = tr.insertCell(-1); 
  26. titleBar.style.cssText = "width:100%;height:"+titleheight+"px;text-align:left;padding:3px;margin:0px;font:bold 13px '宋体';color:"+titlecolor+";border:1px solid " + bordercolor + ";cursor:move;background-color:" + titlebgcolor; 
  27. titleBar.style.paddingLeft = "10px"
  28. titleBar.innerHTML = title; 
  29. var moveX = 0; 
  30. var moveY = 0; 
  31. var moveTop = 0; 
  32. var moveLeft = 0; 
  33. var moveable = false
  34. var docMouseMoveEvent = document.onmousemove; 
  35. var docMouseUpEvent = document.onmouseup; 
  36. titleBar.onmousedown = function() { 
  37. var evt = getEvent(); 
  38. moveable = true;  
  39. moveX = evt.clientX; 
  40. moveY = evt.clientY; 
  41. moveTop = parseInt(msgObj.style.top); 
  42. moveLeft = parseInt(msgObj.style.left);  
  43. document.onmousemove = function() { 
  44. if (moveable) { 
  45. var evt = getEvent(); 
  46. var x = moveLeft + evt.clientX - moveX; 
  47. var y = moveTop + evt.clientY - moveY; 
  48. if ( x > 0 &&( x + w < iWidth) && y > 0 && (y + h < iHeight) ) { 
  49. msgObj.style.left = x + "px"
  50. msgObj.style.top = y + "px"
  51. }  
  52. }; 
  53. document.onmouseup = function () {  
  54. if (moveable) {  
  55. document.onmousemove = docMouseMoveEvent; 
  56. document.onmouseup = docMouseUpEvent; 
  57. moveable = false;  
  58. moveX = 0; 
  59. moveY = 0; 
  60. moveTop = 0; 
  61. moveLeft = 0; 
  62. }  
  63. }; 
  64. var closeBtn = tr.insertCell(-1); 
  65. closeBtn.style.cssText = "cursor:pointer; padding:2px;background-color:" + titlebgcolor; 
  66. closeBtn.innerHTML = "<span style='font-size:15pt; color:"+titlecolor+";'>×</span>"
  67. closeBtn.onclick = function(){  
  68. document.body.removeChild(bgObj);  
  69. document.body.removeChild(msgObj);  
  70. }  
  71. var msgBox = table.insertRow(-1).insertCell(-1); 
  72. msgBox.style.cssText = "font:10pt '宋体';"
  73. msgBox.colSpan = 2; 
  74. msgBox.innerHTML = msg; 
  75. // 获得Event对象,用于兼容IE和FireFox 
  76. function getEvent() { 
  77. return window.event || arguments.callee.caller.arguments[0]; 
  78. }  
  79. </script> 
  80. </head> 
  81. <body> 
  82. <input type="button" value="点这里" 
  83. onclick="alertWin('点击弹出可关闭的层窗口,网页变灰',290,208);" /> 
  84. </body> 
  85. </html> 

希望本文所述对大家的javascript程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选