|
|
|

|

|
Dicas
|

|
ASP - Active Server Page (Miscelâneas)
|
|
 |
Título da Dica: Efeitos na Status Bar
|
 |
|
|
Postada em 13/10/2003 por Tekki
<script language="Javascript"> <!--
var text = "www.vbweb.com.br seu site de VB, VB.net e Asp" var speed = 200
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>
|
|
|
|

|