📄 menu_top.js
字号:
//menu.htm
//定义快速启动处的鼠标行为
function over(the){
the.style.borderRight='1px solid #000000';
the.style.borderBottom='1px solid #000000';
the.style.borderLeft='1px solid #ffffff';
the.style.borderTop='1px solid #ffffff';
}
function out(the){
the.style.border='1px solid #7288AC';
the.style.position='relative';
the.style.left='0px';
the.style.top='0px';
}
function down(the){
the.style.borderLeft='1px solid #000000';
the.style.borderTop='1px solid #000000';
the.style.borderRight='1px solid #ffffff';
the.style.borderBottom='1px solid #ffffff';
}
function up(the){
the.style.borderRight='1px solid #000000';
the.style.borderBottom='1px solid #000000';
the.style.borderLeft='1px solid #ffffff';
the.style.borderTop='1px solid #ffffff';
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -