我有一个创建进度条的脚本,并且是 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>