p186_status_bar_animation.htm

来自「javascript source code part2」· HTM 代码 · 共 19 行

HTM
19
字号
<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 + =
减小字号Ctrl + -
显示快捷键?