?? p186_status_bar_animation.htm
字號(hào):
<HTML>
<HEAD>
<SCRIPT>
var current = 0;
var note = "The scrolling message from hell";
function scroll_it()
{
current = (current == note.length) ? 0 : current+1;
defaultStatus = note.substring (0, current)
+ note.charAt(current).toUpperCase()
+ note.substr(current+1, note.length);
setTimeout("scroll_it()",100);
}
scroll_it();
</SCRIPT>
</HEAD>
</HTML>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -