?? 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 + -