最新状态栏的进度条_JS特效代码
以下是为大家整理的最新的文章,希望大家能够喜欢!
<script language=VBScript> Dim Bar, Line, SPBar = 0 Line = "|"SP = 100Function Window_onLoad() Bar = 95 SP = 10End FunctionFunction 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 FunctionCall Count() </script> |
转载来自:http://www.q3060.com/list3/list115/328.html