最新状态栏的进度条_JS特效代码

以下是三零网为大家整理的最新状态栏的进度条_JS特效代码的文章,希望大家能够喜欢!


 <script language=VBScript>
Dim Bar, Line, SP
Bar = 0  
Line = "|"
SP = 100

Function Window_onLoad()
  Bar = 95
  SP = 10
End Function

Function Count()
  If Bar < 100 Then
    Bar = Bar + 1
    Window.Status = "已经完成了" & Bar & "%" &  " " & String(Bar, Line)
    setTimeout "Count()", SP
  Else
    Window.Status = "欢迎你的光临电脑维护网!!!"
    Document.Body.Style.Display = ""
  End If    
End Function

Call Count()
</script>

转载来自:http://www.q3060.com/list3/list115/328.html