#22002/11/7 18:20:53
是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 = "欢迎您乘上软件快车,www.downsoft.net!"
Document.Body.Style.Display = ""
End If
End Function
Call Count()