📄 p186_status_bar_animation.htm
字号:
<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>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -