📄 linking.js
字号:
function mouseoverlink(link) {
link.style.textDecorationUnderline = "True";
}
function mouseoutlink(link) {
link.style.textDecorationNone = "True";
}
Browsing = navigator.appVersion
if (Browsing.indexOf ("4.0") >=0)
{
document.body.onmouseover=makeCool;
document.body.onmouseout=makeNormal;
}
function makeCool() {
src = event.toElement;
if (src.tagName == "A") {
src.oldcol = src.style.color;
src.style.color = "B22222";
}
}
function makeNormal() {
src=event.fromElement;
if (src.tagName == "A") {
src.style.color = src.oldcol;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -