状态栏打字效果 - 中国WEB开发者网络 (http://www.webasp.net) -- 网页特效 (http://www.webasp.net/javascript/) --- 状态栏打字效果 (http://www.webasp.net/javascript/1/189.htm) |
| -- 发布日期: 2004-06-17 |
| <!-- 网页特效代码由[中国WEB开发者网络:http://www.ChinaWebDev.com]提供! --> <!-- 要实现此效果需要 2 个步骤: --> <!-- 第 1 步: --> <!-- 把下面的代码加到<HEAD></HEAD>区域中: --> <SCRIPT LANGUAGE="JavaScript"> <!-- Begin var msg = "欢迎来到[中国WEB开发者网络]www.webasp.net"; var chars = msg.length + 1; var updateStatus = ""; var i = 0; function statusMessage() { if (i < chars) setTimeout("nextLetter()", 300); } function nextLetter() { updateStatus = msg.substring(0,i) + '_'; window.status = updateStatus; i++; statusMessage(); } // End --> </script> <!-- 第 2 步: --> <!-- 把<BODY>中的属性代码改为: --> <BODY onLoad="statusMessage()"> |
| webasp.net |