?? showlayers.js
字號:
//登錄后控制的彈出菜單
function showLayers(i)
{
eval("document.all.layer" + i + ".style.visibility='visible';");
eval("document.all.a"+i+".style.backgroundColor='#FCF6EC';");
eval("document.all.f"+i+".style.color='#ff0000';");
}
function hideLayers(i)
{
eval("document.all.layer" + i + ".style.visibility='hidden';");
eval("document.all.a" + i + ".style.backgroundColor='';");
eval("document.all.f"+i+".style.color='#000000';");
}
function navbarOver(src, clrOver)
{
if(!src.contains(event.fromElement))
{
//src.style.cursor = 'hand';
src.bgColor = clrOver;
}
}
function navbarOut(src, clrIn)
{
if(!src.contains(event.toElement))
{
//src.style.cursor = 'default';
src.bgColor = clrIn;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -