zoukankan
html css js c++ java
进度条的实现
<
title
>
loadpage
</
title
>
<
meta http
-
equiv
=
"
Content-Type
"
content
=
"
text/html; charset=gb2312
"
>
<
style type
=
"
text/css
"
>
<!--
.unnamed1 { background
-
color: #
000000
}
-->
</
style
>
</
head
>
<
body
>
<
table border
=
0
cellpadding
=
0
cellspacing
=
0
width
=
"
100%
"
height
=
"
100%
"
>
<
tr
>
<
form name
=
loading
>
<
td align
=
center
>
<
p align
=
"
center
"
>&
nbsp;
</
p
>
<
p align
=
"
center
"
><
font color
=
"
#00FF00
"
size
=
"
2
"
></
font
></
p
>
<
p
>
<
input type
=
text name
=
chart size
=
46
style
=
"
font-family:Arial; font-weight:bolder;
color:#00FF00; background-color:black; padding:0px; border-style:none;
"
>
<
br
>
<
br
>
<
input type
=
text name
=
percent size
=
46
style
=
"
font-family:Arial; color:#00FF00;
text-align:center; border-medium; border-style:none;
"
class
=
"
unnamed1
"
>
<
br
>
<
br
>
<
font color
=
"
#00FF00
"
size
=
"
2
"
>
<
script
>
var
bar
=
0
var
line
=
"
||
"
var
amount
=
"
||
"
count()
function
count(){
bar
=
bar
+
2
amount
=
amount
+
line
document.loading.chart.value
=
amount
document.loading.percent.value
=
'正在查询,请稍候
'
if
(bar
<
99
)
{
setTimeout(
"
count()
"
,
50
);
}
else
{
amount
=
""
;
setTimeout(
"
count()
"
,
50
);
bar
=
0
;
}
}
</
script
>
<
noscript
></
noscript
></
font
></
p
>
</
td
>
<!--
//
-->
</
form
>
</
tr
>
</
table
>
</
body
>
</
html
>
保存为 wait.html
//
显示
function checkCard()
{
parent.document.all.wait.height
=
400
;
parent.document.all.cardframe.height
=
0
;
document.location.href
=
'
Customer_Service01.aspx
'
;
}
function hide_wait()
{
parent.document.all.wait.height
=
0
;
parent.document.all.cardframe.height
=
document.body.scrollHeight;
document.body.style.overflow
=
"
hidden
"
;
}
</
script
>
</
HEAD
>
<
body onload
=
"
hide_wait()
"
MS_POSITIONING
=
"
GridLayout
"
>
//
隐藏
https://files.cnblogs.com/gwazy/%E8%BF%9B%E5%BA%A6%E6%9D%A1.rar
查看全文
相关阅读:
二叉树前序中序遍历求后序遍历
二叉树的遍历
Codeforces Round #381 (Div. 2)
Codeforces Round #380 (Div. 2, Rated, Based on Technocup 2017
Codeforces Round #379 (Div. 2)
HDU 2896 ac自动机裸题
RabbitMQ镜像模式双节点部署时故障转移过程中队列中消息的状态
Maven搭建Spring MVC时使用jstl无效
在使用HttpClient做客户端调用一个API时 模拟并发调用时发生“死锁"?
使用mongodb提供的dotnet core sdk进行地理位置运算
原文地址:https://www.cnblogs.com/gwazy/p/138395.html
最新文章
Linux Tomcat安装配置
Windows Tomcat安装配置
linux系统自动备份打包部署脚本
Hutool工具里,POST方法,body中传参的几种调用方法
linux系统下完全卸载Jenkins
Ubuntu版本linux系统安装git
Tomcat使用shutdown.bat关闭会将其他Tomcat关掉的问题
使用freemarker生成word文档处理表格数据
使用freemarker模板引擎生成word文档的开发步骤
mybatis调用oracle存储过程的几个参考例子
热门文章
mybatis一对多查询之collection的用法
2017 Hackatari Codeathon部分题解
2017哈理工校赛部分题解
Codeforces Round #407 (Div. 2)B. Masha and geometric depression模拟(神坑题)
Codeforces Round #407 (Div. 2) A. Anastasia and pebbles模拟
Codeforces Round #278 (Div. 1) Strip RMQ
Codeforces Round #406 (Div. 2)C. Berzerk
List likes playing card 公式~
[Offer收割]编程练习赛10简略题解
二叉树遍历 已知中序后序遍历求前序遍历
Copyright © 2011-2022 走看看