状态栏中的文字

 

点击这里看效果


在 <body> 与 </body> 之间加入:

<script language="JavaScript">
var text = "welcome to 5d city!"
var speed = 50
var x = 0
function bb() {
var a = text.substring(0,x)
var b = text.substring(x,x+1).toUpperCase()
var c = text.substring(x+1,text.length)
window.status = a + b + c
if (x == text.length) {
x = 0
}
else {
x++
}
setTimeout("bb()",speed)
}
bb();
</script>