0

我有一个创建进度条的脚本,并且是 CSS 样式。它工作得很好,但是一旦酒吧到达终点,它就会停止,我无法让脚本循环以使其重新开始。如何循环此脚本,以便进度条在到达末尾时重新开始?

<script type="text/javascript">
$(document).ready(function() {
var el = $(''#progress'');
el.animate({
width: "100%"
}, 40000);
});
</script>


<style>
#progressKeeper {background:#f2f2f2;display:none;width: 400px;height: 18px;border: 1px         solid #CCC;-moz-border-radius:7px; border-radius:7px;color:#f2f2f2;font-family:Arial;font-    weight:bold;font-style:italic;font-size:.9em;margin-bottom:2000px;}
#progress {background: #005c9e;width: 0;height: 17px;-moz-border-radius:7px; border-    radius:7px;}
</style>
4

2 回答 2

3

放弃 jQuery,使用 CSS3!

#progress {
    animation:progress 40s linear infinite;
    -webkit-animation:progress 40s linear infinite;
}

@keyframes progress {from {width:0} to {width:100%}}
@-webkit-keyframes progress {from {width:0} to {width:100%}}

如果您必须支持过时的浏览器......好吧,将回调传递给animate函数以告诉它再次启动动画。像这样的东西:

$(function() {
    var prog = $("#progress");
    anim();
    function anim() {
        prog.css({width:0});
        prog.animate({width:"100%"},40000,anim);
    }
});
于 2013-09-25T14:12:38.260 回答
2

使其成为一个函数并将该函数.animate作为完成处理程序传递给您的调用。请参阅jQuery().animate()

就像是:

$(document).ready(function() {
    function animateProgressBar( ) {
        $('#progress').width(0).animate({
            width : "100%"
        }, 40000, animateProgressBar);
    }

    animateProgressBar();
});

(未经测试)

于 2013-09-25T14:12:07.843 回答