Countup的倒数计时器

时间:2016-03-15 22:57:15

标签: javascript timer countdown

大家好我有这个倒计时脚本,但我希望它能够计算,而不是更新div范围,更新进度条的值。

HTML

<progress value="**UPDATE THIS**" max="780"></progress>

SCRIPT

var sec = $('#update span').text(), secInit = sec;
        var timer = setInterval(function() {
            $('#update span').text(--sec);
            if (sec == 0) {
                sec = secInit;
                $.ajax({
                    url: "{{ url('/user/update') }}",
                    type: "GET",
                    data: { 'id' : {{ Auth::user()->id }} }
                });
            }
        }, 1000);

有什么想法吗?

谢谢, 蒂亚戈

1 个答案:

答案 0 :(得分:2)

为进度条指定一个ID,例如

<progress id="progress-bar" value="**UPDATE THIS**" max="780"></progress>

并使用一些javascript每秒更改一次值,例如

var timer = setInterval(function() {
            var progbar = document.getElementById("progress-bar");
            progbar.value = progbar.value < 780 ? +progbar.value + 1 : 0;
        }, 1000);

Fiddle