📄 maxwindow.js
字号:
/***********************************************
* Auto Maximize Window Script- ? Dynamic Drive (www.dynamicdrive.com)
* This notice must stay intact for use
* Visit http://www.dynamicdrive.com/ for this script and 100's more.
***********************************************/
function mw()
{
top.window.moveTo(0,0);
if (document.all)
{
top.window.resizeTo(screen.availWidth,screen.availHeight);
}
else if (document.layers||document.getElementById)
{
if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth)
{
top.window.outerHeight = screen.availHeight;
top.window.outerWidth = screen.availWidth;
}
}
}
//状态栏时钟代码
function kstatus()
{
var strStatus = '欢迎你进入本系统 今天是'+new Date().toLocaleString()+' 星期'+'日一二三四五六'.charAt(new Date().getDay());
window.status=strStatus;
setTimeout("kstatus()",1000);
}
kstatus();
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -