📄 popdown.js
字号:
function colorover(src,clrOver){
src.style.cursor = 'default';
src.style.color = '#ffffff';
//src.style.borderLeft = "1px dotted #000000";
//src.style.borderTop = "1px dotted #000000";
//src.style.borderRight = "1px dotted #000000";
//src.style.borderBottom = "1px dotted #000000";
src.style.backgroundColor = clrOver;
}
function colorout(src,clrIn) {
src.style.cursor = 'default';
src.style.color = '#000000';
//src.style.borderLeft = "";
//src.style.borderTop = "";
//src.style.borderRight = "";
//src.style.borderBottom = "";
src.style.backgroundColor = clrIn;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -