现在的位置: 首页 > 综合 > 正文

用js实现打字机效果

2012年10月29日 ⁄ 综合 ⁄ 共 1027字 ⁄ 字号 评论关闭

第一步:把如下代码加入<head>区域中

<SCRIPT LANGUAGE="JavaScript">
<!-- Original: Tarjei Davidsen (the@rescueteam.com) -->
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Begin
  var max=0;

  function textlist() {

  max=textlist.arguments.length;

  for (i=0; i<max; i++)

  this[i]=textlist.arguments[i];}

  tl = new textlist( "在此输入要输出的文字");

  var x = 0; pos = 0;

  var l = tl[0].length;

  function textticker() {

  document.tickform.tickfield.value = tl[x].substring(0, pos) + "_";

  if(pos++ == l) {

  pos = 0;

  setTimeout("textticker()", 2000);

  if(++x == max) x = 0;

  l = tl[x].length;

  } else

  setTimeout("textticker()", 50);}

  // End --></script>

第二步:把如下代码加入<body>区域中

<form name=tickform>

<textarea name=tickfield rows=3 cols=38 style="background-color: rgb(0,0,0); color: rgb(255,255,255); cursor: default; font-family: Arial; font-size: 12px" wrap=virtual>The news will appear here when the page has finished loading.</textarea></form>

第三步:把<body>改为<body bgcolor="#fef4d9" OnLoad="textticker()">

用JavaScript实现网页“打字机”效果

http://tech.sina.com.cn/c/2002-04-05/12374.html

抱歉!评论已关闭.