首页 > 语言 > JavaScript > 正文

javascript实现的右下角弹窗实例

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

这篇文章主要介绍了javascript实现的右下角弹窗,实例分析了javascript实现右下角弹窗的完整实现步骤与技巧,需要的朋友可以参考下

本文实例讲述了javascript实现的右下角弹窗的方法。分享给大家供大家参考。具体如下:

 

 
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
  3. <html xmlns="http://www.w3.org/1999/xhtml"
  4. <head> 
  5. <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 
  6. <title>右下角的弹窗</title> 
  7. <style type="text/css"
  8. body { background:#333333;} 
  9. #winpop { 
  10. width:200px; height:0px;  
  11. position:absolute; right:0; bottom:0; 
  12. border:1px solid #999999; margin:0; padding:1px; 
  13. overflow:hidden; display:none; background:#FFFFFF 
  14. #winpop .title { 
  15. width:100%; height:20px; 
  16. line-height:20px; background:#FFCC00; 
  17. font-weight:bold; text-align:center; 
  18. font-size:12px; 
  19. #winpop .con { 
  20. width:100%; height:80px; 
  21. line-height:80px; font-weight:bold; 
  22. font-size:12px; color:#FF0000; 
  23. text-decoration:underline; text-align:center 
  24. #silu { 
  25. font-size:13px; color:#999999; 
  26. position:absolute; right:0; 
  27. text-align:right; text-decoration:underline; 
  28. line-height:22px; 
  29. .close { 
  30. position:absolute; right:4px; top:-1px; 
  31. color:#FFFFFF; cursor:pointer 
  32. </style> 
  33. <script type="text/javascript"
  34. function tips_pop(){ 
  35. var MsgPop=document.getElementById("winpop"); 
  36. var popH=parseInt(MsgPop.style.height); 
  37. if (popH==0){  
  38. MsgPop.style.display="block"
  39. show=setInterval("changeH('up')",2); 
  40. else {  
  41. hide=setInterval("changeH('down')",2); 
  42. function changeH(str) { 
  43. var MsgPop=document.getElementById("winpop"); 
  44. var popH=parseInt(MsgPop.style.height); 
  45. if(str=="up"){  
  46. if (popH<=100){  
  47. MsgPop.style.height=(popH+4).toString()+"px"
  48. else
  49. clearInterval(show); 
  50. if(str=="down"){ 
  51. if (popH>=4){  
  52. MsgPop.style.height=(popH-4).toString()+"px"
  53. else{  
  54. clearInterval(hide);  
  55. MsgPop.style.display="none";  
  56. window.onload=function(){  
  57. document.getElementById('winpop').style.height='0px'
  58. setTimeout("tips_pop()",800);  
  59. </script> 
  60. </head> 
  61. <body> 
  62. 内容展示内容展示内容展示内容展示内容展示 
  63. 内容展示内容展示内容展示内容展示内容展示 
  64. 内容展示内容展示内容展示内容展示内容展示 
  65. <hr> 
  66. <div id="silu"
  67. <button onclick="tips_pop()">测试按钮</button> 
  68. </div> 
  69. <div id="winpop"
  70. <div class="title">您有新的消息 
  71. <span class="close" onclick="tips_pop()">X</span></div> 
  72. <div class="con">未读信息(1)</div> 
  73. </div> 
  74. <div>http://www.vevb.com/</div> 
  75. </body> 
  76. </html> 

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

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

图片精选