ebb.js 5.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. function bbimg(o){
  2. var zoom=parseInt(o.style.zoom, 10)||100;zoom+=event.wheelDelta/12;if (zoom>0) o.style.zoom=zoom+'%';
  3. return false;
  4. }
  5. function getCookieVal (offset) {var endstr=document.cookie.indexOf (";",offset);if (endstr==-1) endstr=document.cookie.length;return unescape(document.cookie.substring(offset, endstr));}
  6. function GetCookie (name){var arg=name+"=";var alen=arg.length;var clen=document.cookie.length;var i = 0;while (i<clen){var j=i+alen;if (document.cookie.substring(i,j)==arg) return getCookieVal (j);i = document.cookie.indexOf(" ",i)+1;if (i==0) break;} return null;}
  7. function DeleteCookie (name) {var exp=new Date(); exp.setTime (exp.getTime()-1); var cval=GetCookie (name); document.cookie=name+"="+cval+"; expires="+exp.toGMTString();}
  8. var currentpos,timer;
  9. function initialize() { timer=setInterval("scrollwindow()",20);}
  10. function sc(){clearInterval(timer);}
  11. function scrollwindow() {currentpos=document.body.scrollTop;window.scroll(0,++currentpos);if (currentpos != document.body.scrollTop) sc();}
  12. document.onmousedown=sc
  13. document.ondblclick=initialize
  14. ie = (document.all)? true:false
  15. if (ie){function ctlent(eventobject){if(event.ctrlKey && window.event.keyCode==13){this.document.FORM.submit();}}}
  16. clckcnt = 0;
  17. function clckcntr() {clckcnt++;if(clckcnt > 1) {if(clckcnt > 2) { return false; }alert('贴子已经发出了......\n\n' + '请等待片刻......\n\n' + '不要重复按提交键,谢谢!');return false;}return true;}
  18. var nn = !!document.layers;
  19. var ie = !!document.all;
  20. if (nn) {netscape.security.PrivilegeManager.enablePrivilege("UniversalSystemClipboardAccess"); var fr=new java.awt.Frame(); var Zwischenablage = fr.getToolkit().getSystemClipboard();}
  21. function copy(textarea){if (nn) {textarea.select();Zwischenablage.setContents(new java.awt.datatransfer.StringSelection(textarea.value), null);} else if (ie) {textarea.select();cbBuffer=textarea.createTextRange();cbBuffer.execCommand('Copy');}}
  22. function paste(textarea){ if (nn) {var Inhalt=Zwischenablage.getContents(null); if (Inhalt!=null) textarea.value=Inhalt.getTransferData(java.awt.datatransfer.DataFlavor.stringFlavor);} else if (ie) {textarea.select(); cbBuffer=textarea.createTextRange(); cbBuffer.execCommand('Paste');}}
  23. function openScript(url, width, height){var Win = window.open(url,"openScript",'width=' + width + ',height=' + height + ',resizable=1,scrollbars=yes,menubar=yes,status=yes' );}
  24. function runEx(){var winEx = window.open("", "winEx", "width=300,height=200,status=yes,menubar=yes,scrollbars=yes,resizable=yes"); winEx.document.open("text/html", "replace"); winEx.document.write(unescape(event.srcElement.parentElement.children[2].value)); winEx.document.close(); }
  25. //******************************默认设置定义******************************
  26. tPopWait=50; //停留tWait豪秒后显示提示
  27. tPopShow=5000; //显示tShow豪秒后关闭提示,1000为1秒
  28. showPopStep=20;
  29. popOpacity=90; //提示框的透明度,百分比,数字越小越透明
  30. fontcolor="#000000";
  31. bgcolor="#ffffff";
  32. bordercolor="#cccccc";
  33. //******************************内部变量定义******************************
  34. sPop=null;curShow=null;tFadeOut=null;tFadeIn=null;tFadeWaiting=null;
  35. document.write("<style type='text/css'id='defaultPopStyle'>");
  36. document.write(".cPopText { background-color: " + bgcolor + ";color:" + fontcolor + "; border: 2px " + bordercolor + " solid;font-color: font-size: 12px; padding-right: 4px; padding-left: 4px; height: 20px; padding-top: 2px; padding-bottom: 2px; filter: Alpha(Opacity=0)}");
  37. document.write("</style>");
  38. document.write("<div id='dypopLayer' style='position:absolute;z-index:1000;' class='cPopText'></div>");
  39. function showPopupText()
  40. {
  41. var o=event.srcElement;MouseX=event.x;MouseY=event.y;
  42. if(o.alt!=null && o.alt!=""){o.dypop=o.alt;o.alt=""};
  43. if(o.title!=null && o.title!=""){o.dypop=o.title;o.title=""};
  44. if(o.dypop!=sPop)
  45. {
  46. sPop=o.dypop;clearTimeout(curShow);clearTimeout(tFadeOut);clearTimeout(tFadeIn);clearTimeout(tFadeWaiting);
  47. if(sPop==null || sPop=="")
  48. {
  49. dypopLayer.innerHTML="";dypopLayer.style.filter="Alpha()";dypopLayer.filters.Alpha.opacity=0;
  50. }
  51. else
  52. {
  53. if(o.dyclass!=null) popStyle=o.dyclass
  54. else popStyle="cPopText";
  55. curShow=setTimeout("showIt()",tPopWait);
  56. }
  57. }
  58. }
  59. function showIt()
  60. {
  61. dypopLayer.className=popStyle;dypopLayer.innerHTML=sPop;
  62. popWidth=dypopLayer.clientWidth;popHeight=dypopLayer.clientHeight;
  63. if(MouseX+12+popWidth>document.body.clientWidth) popLeftAdjust=-popWidth-24
  64. else popLeftAdjust=0;
  65. if(MouseY+12+popHeight>document.body.clientHeight) popTopAdjust=-popHeight-24
  66. else popTopAdjust=0;
  67. dypopLayer.style.left=MouseX+12+document.body.scrollLeft+popLeftAdjust;
  68. dypopLayer.style.top=MouseY+12+document.body.scrollTop+popTopAdjust;
  69. dypopLayer.style.filter="Alpha(Opacity=0)";fadeOut();
  70. }
  71. function fadeOut()
  72. {
  73. if(dypopLayer.filters.Alpha.opacity<popOpacity)
  74. { dypopLayer.filters.Alpha.opacity+=showPopStep;tFadeOut=setTimeout("fadeOut()",1); }
  75. else
  76. { dypopLayer.filters.Alpha.opacity=popOpacity;tFadeWaiting=setTimeout("fadeIn()",tPopShow); }
  77. }
  78. function fadeIn()
  79. {
  80. if(dypopLayer.filters.Alpha.opacity>0)
  81. { dypopLayer.filters.Alpha.opacity-=1;tFadeIn=setTimeout("fadeIn()",1); }
  82. }
  83. document.onmouseover=showPopupText;