gpt4 book ai didi

javascript - 倒数计时器到 Countup

转载 作者:行者123 更新时间:2023-12-02 14:53:11 26 4
gpt4 key购买 nike

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

HTML

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

脚本

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);

有什么想法吗?

谢谢,蒂亚戈

最佳答案

为进度条指定一个 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

关于javascript - 倒数计时器到 Countup,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36023816/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com