博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

文字从左往右移动显示

Posted on 2010-12-10 17:26  傷ロ丄の盐ㄜ  阅读(257)  评论(0编辑  收藏  举报

<script lanuage="JavaScript">

var temp
var f = "                              "
var f = f + "Put your text here."
var speedtogo = 100

var counter


function scrollon() {
       
   temp  = f.substring(0,1);
   f += temp
   f    = f.substring(1,f.length);
   document.wow.display.value = f.substring(0,55);
 
  counter    = setTimeout("scrollon()",speedtogo);

 }

</script>

<body  onLoad="scrollon()">
<form name="wow">
<input type="text" size="50" name="display" value="">
</form>

</body>