popdown.js
来自「购物网设计的购物系统是基于WEB开发的大型购物系统。 它以构建电子商务网站为目」· JavaScript 代码 · 共 19 行
JS
19 行
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 + =
减小字号Ctrl + -
显示快捷键?