源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

jquery实现的一个简单进度条效果实例

  • 时间:2020-08-05 13:37 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:jquery实现的一个简单进度条效果实例
jquery实现一个进度条的效果,或许在这里没有什么实际的作用,但是已经实现了进度条的部分原理,前端是怎么实现那种进度效果的。 [b]效果演示:[/b] [img]http://files.jb51.net/file_images/article/201405/201451290213769.jpg?20144129230[/img] [b]进度条实现源码: [/b]
[u]复制代码[/u] 代码如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>jquery实现进度条</title> <style>  .progressBar{width:200px;height:8px;border:1px solid #98AFB7;border-radius:5px;margin-top:10px;}  #bar{width:0px;height:8px;border-radius:5px;background:#5EC4EA;} </style> <script type="text/jscript" src="jquery.min.js"></script> <script type="text/javascript">  function progressBar(){   //初始化js进度条   $("#bar").css("width","0px");   //进度条的速度,越小越快   var speed = 20;   bar = setInterval(function(){    nowWidth = parseInt($("#bar").width());    //宽度要不能大于进度条的总宽度    if(nowWidth<=200){     barWidth = (nowWidth + 1)+"px";     $("#bar").css("width",barWidth);    }else{     //进度条读满后,停止     clearInterval(bar);    }    },speed);  } </script> </head> <body>  <input type="button" value="开始" onclick="progressBar()" />  <div class="progressBar"><div id="bar"></div></div> </body> </html>
 
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部