?? occhat_hidewin.js
字號:
// JavaScript Document
var ocChat_clientDivHide=false;
function ocChat_hideWin(winId){
try{
var winObj = parent.document.getElementById(winId);
var orTop=parseInt((winObj.style.top).replace("px",""));
if(ocChat_clientDivHide == false){
winObj.style.top = (orTop + 260) + "px";
ocChat_clientDivHide=true;
}else{
winObj.style.top = (orTop - 260) + "px";
ocChat_clientDivHide=false;
}
}catch(exception){}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -