?? popwin.js
字號(hào):
/*
彈出窗口
*/
function popwin(sUrl,iWidth,iHeight,sName)
{
Win1=window.open(sUrl,sName,"fullscreen=1,toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=0");
var windowX = window.screen.width ;
var windowY = window.screen.height;
Win1.resizeTo(iWidth,iHeight);
Win1.moveTo((windowX-iWidth)/2,(windowY-iHeight)/2);
Win1.focus();
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -