|
|
| 状态栏打字效果的文字 |
| 整理:Cnwshow.Com 来源:Internet 整理时间:2008-2-16 |
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>状态栏打字效果的文字</title>
<SCRIPT LANGUAGE="JavaScript">
var msg = "中国个人网页秀 http://www.cnwshow.com";
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();
}
</script>
</HEAD>
<body onLoad="statusMessage()">
<p></p>
<p>说明:请看状态栏的效果.</p>
</body>
</html>
|
|
|
|
|
|