首页 > 语言 > JavaScript > 正文

javascript实现仿IE顶部的可关闭警告条

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

仿windows IE顶部的敬告工具条,带关闭按钮,设计还算精美,你完全可以用到自己的网页用于显示提示等方面,有需要的小伙伴可以参考下。

功能非常实用,代码非常简单,就不多废话了,直接奉上:

 

 
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
  2. <html xmlns="http://www.w3.org/1999/xhtml"
  3. <head> 
  4. <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 
  5. <title>仿IE顶部的警告条,可以关闭</title> 
  6. <style type="text/css"
  7. #informationbar{ 
  8. position: fixed; 
  9. left: 0; 
  10. width: 100%; 
  11. text-indent: 5px; 
  12. padding: 5px 0; 
  13. background-color: lightyellow; 
  14. border-bottom: 1px solid black; 
  15. font: bold 12px Verdana; 
  16. * html #informationbar{ /*IE6 hack*/ 
  17. position: absolute; 
  18. width: expression(document.compatMode=="CSS1Compat"? document.documentElement.clientWidth+"px" : body.clientWidth+"px"); 
  19. </style> 
  20. <script type="text/javascript"
  21. function informationbar(){ 
  22. this.displayfreq="always" 
  23. this.content='<a href="javascript:informationbar.close()"><img src="close.gif" style="width: 14px; height: 14px; float: right; border: 0; margin-right: 5px" 
  24.  
  25. /></a>' 
  26. informationbar.prototype.setContent=function(data){ 
  27. this.content=this.content+data 
  28. document.write('<div id="informationbar" style="top: -500px">'+this.content+'</div>'
  29. informationbar.prototype.animatetoview=function(){ 
  30. var barinstance=this 
  31. if (parseInt(this.barref.style.top)<0){ 
  32. this.barref.style.top=parseInt(this.barref.style.top)+5+"px" 
  33. setTimeout(function(){barinstance.animatetoview()}, 50) 
  34. else
  35. if (document.all && !window.XMLHttpRequest) 
  36. this.barref.style.setExpression("top"'document.compatMode=="CSS1Compat"? document.documentElement.scrollTop+"px" : body.scrollTop+"px"'
  37. else 
  38. this.barref.style.top=0 
  39. informationbar.close=function(){ 
  40. document.getElementById("informationbar").style.display="none" 
  41. if (this.displayfreq=="session"
  42. document.cookie="infobarshown=1;path=/" 
  43. informationbar.prototype.setfrequency=function(type){ 
  44. this.displayfreq=type 
  45. informationbar.prototype.initialize=function(){ 
  46. if (this.displayfreq=="session" && document.cookie.indexOf("infobarshown")==-1 || this.displayfreq=="always"){ 
  47. this.barref=document.getElementById("informationbar"
  48. this.barheight=parseInt(this.barref.offsetHeight) 
  49. this.barref.style.top=this.barheight*(-1)+"px" 
  50. this.animatetoview() 
  51. window.onunload=function(){ 
  52. this.barref=null 
  53. </script> 
  54. <script type="text/javascript"
  55. <!--Invocation code--> 
  56. var infobar=new informationbar() 
  57. infobar.setContent('敬告:明天中午12点天降钱雨,请备好麻袋!  <a href="#">购买麻袋</a>  <a href="#">购买麻袋</a>'
  58. infobar.initialize() 
  59. </script> 
  60. </head> 
  61. <body> 
  62. </body> 
  63. </html> 

以上所述就是本文的全部内容了,希望大家能够喜欢。

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

图片精选