欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Jquery 一个进度条方法

程序员文章站 2022-04-09 17:06:55
效果展示html部分
css部分.bac{ background-color: black;//进度条北京 height: 16...

效果展示

Jquery 一个进度条方法

html部分

<div class="bac"><div class="progress"></div></div>
<button class="start">点击开始</button>
 <button class="stop">点击暂停</button>

css部分

.bac{
        background-color: black;//进度条北京
        height: 16px;
        width: 180px;
        position: relative;
        border-radius: 8px;
        margin-bottom: 10px;
    }
        .progress{
            width: 180px;
            height: 16px;
            background: url("imgs/progress.png") no-repeat 0 0;//进度条的图片
            position: absolute;
            top:0px; left:0;
        }

这里用了子绝父相(.son:absolute father:relative)的定位方法,以便于图片可以覆盖在黑色的背景颜色上

script部分

 var timer;
         $('.start').click(function () 
        //开启定时器
         timer=setInterval(function () {
            var progresswidth=$('.progress').width();//拿到进度条当前的宽度
            progresswidth-=5;
            $('.progress').css({
                width:progresswidth
            })
        },200)
    })
     $('.stop').click(function () {
         clearTimeout(timer);
     })

本文地址:https://blog.csdn.net/weixin_45439010/article/details/109236791