js 原声制作进度条

<!DOCTYPE> 
<html xmlns="http://www.w3.org/1999/xhtml" > 
<head> 
<title>进度条</title> 
<style type="text/css"> 
  body{ 
    text-align:center; 
  } 
  .graph{ 
    width:40%; 
    border:1px solid rgba(128, 128, 128, 0.17); 
    height:12px; 
margin:auto;
   font-size: 16px;
  } 
  #bar{ 
        display:block; 
        background:rgba(128, 128, 128, 0.17); 
        float:left; 
        height:100%; 
        text-align:center; 
    } 
    #barNum{ 
        position:absolute; 
    } 
</style> 
<script type="text/javascript"> 
function $(obj){ //封装方法,相当于jQuery
    return document.getElementById(obj); 

function go(){ 
    $("bar").style.width = parseInt($("bar").style.width) + 1 + "%"; 
   // $("bar").innerHTML = $("bar").style.width; 
    if($("bar").style.width == "100%"){ 
        window.clearInterval(bar); //进度为100时清除定时器
window.location.href="";
    } 

var bar = window.setInterval("go()",20); //设置定时器
window.onload = function(){ 
var wheight=window.innerHeight;
$("content").style.marginTop=wheight/2-34;
    bar; 

</script> 
</head> 
<body> 
<div id="content">
<div>系统正在认证合法性,请耐心等待</div>
<div class="graph"> 
<strong id="bar" style="width:1%;"></strong> 
</div> 
</div>


</body> 
</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值