|
|
| 状态栏的文字一闪一闪的显示 |
| 整理:Cnwshow.Com 来源:Internet 整理时间:2008-2-16 |
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>状态栏的文字一闪一闪的显示</title>
<script language="">
<!--
var yourwords = "☆ ★ ☆ 中国个人网页秀 ☆ ★ ☆";
var speed = 700;
var control = 1;
function flash()
{
if (control == 1)
{
window.status=yourwords;
control=0;
}
else
{
window.status="";
control=1;
}
setTimeout("flash()",speed);
}
window.onload=flash
// -->
</script>
</HEAD>
<BODY>
<p></p>
<p>说明:请看状态栏的效果.</p>
</body>
</html>
|
|
|
|
|
|