免費論壇 繁體 | 簡體
Sclub交友聊天~加入聊天室當版主
分享
返回列表 發帖

[分享] 仿独立论坛,在页头加个警告信息!

代码来源:互联网

图片预览:
QQ截图20130509221258.jpg
2013-5-9 22:40


新建页头通栏广告,把代码放进去即可。

  1. <div id="topwarning_7ree" style='margin: 0 auto; border: 1px solid #FF0000; background-color:#FFFF00; clear: both; height: 40px; width:958px; position: relative; display:none;'>
  2. <div style='position: absolute; right: 3px; top: 3px;'>
  3. <a href="javascript:void(0);" onClick="hdMsg()"><img src="http://fc01.deviantart.net/fs70/f/2013/129/1/c/close_7ree_by_bjwujie-d64n3rz.gif" border="0" mce_style="border: none;" alt='关闭提示' /></a>
  4. </div>

  5. <div style="background-image:url('http://fc05.deviantart.net/fs70/f/2013/129/b/e/warning_7ree_by_bjwujie-d64n3oa.png'); background-repeat:no-repeat; background-position:30px 3px;">
  6. <div style="margin-left:75px; width:860px;text-align:left; height:40px; line-height:40px;overflow-x :hidden;overflow-y:hidden;">
  7. <a href="要打开的连接1" style="font-size:13px; color: #FF0000;">警告的内容1</a>
  8. <a href="要打开的连接2" style="font-size:13px; color: #FF0000;">警告的内容2</a>
  9. </div></div></div>

  10. <script type="text/javascript">
  11. function SetCookie(name,value,Days){
  12.     var exp  = new Date();
  13.     exp.setTime(exp.getTime() + Days*24*60*60*1000);
  14.     document.cookie = name + "="+ escape (value) + ";expires=" + exp.toGMTString();
  15. }
  16. function getCookie(name)   
  17. {
  18.     var arr = document.cookie.match(new RegExp("(^| )"+name+"=([^;]*)(;|$)"));
  19.      if(arr != null) return unescape(arr[2]); return null;

  20. }
  21. function hdMsg()
  22. {
  23. var p1=document.getElementById("topwarning_7ree");
  24. p1.style.display="none";
  25. SetCookie('topwarning_7ree', 'off', 1);
  26. }
  27. if ('off' != getCookie('topwarning_7ree'))
  28. {
  29. document.getElementById("topwarning_7ree").style.display='block';
  30. }
  31. </script>
複製代碼



SetCookie('topwarning_7ree', 'off', 1);
这里为关闭警告信息后不再出现的天数,默认为1天。
1

評分人數

謝謝分享
   請各位多多支持,謝謝ww

TOP

收下來用用啊

TOP

提示: 作者被禁止或刪除 內容自動屏蔽

TOP

返回列表