jQuery+css做一个倒计时进度条

811 ℃

如何利用jQuery+css做一个倒计时进度条,下面web建站小编给大家简单介绍一下具体实现代码!

html代码:

<div class="progress-bar">
  <div class="item"></div>
</div>
<div class="btn">进度条</div>

<div class="count-down">
  <div class="item"></div>
</div>
<div>剩余时间 : <span class="time"></span>s</div>

css代码:

.progress-bar {
  width:200px;
  height:20px;
  background-color:aliceblue;
  border-radius:20px;
  display:flex;
}
.btn {
  margin:20px;
  width:70px;
  height:30px;
  line-height:30px;
  text-align:center;
  background-color:#bfa;
  cursor:pointer;
  color:rgb(202,202,90);
}
.progress-bar .item {
  width:0;
  height:100%;
  background-color:rgb(56,148,255);
  border-radius:20px;
  transition:all 1s;
}
.count-down {
  width:200px;
  height:20px;
  background-color:aliceblue;
  border-radius:20px;
  display:flex;
}
.count-down .item {
  width:100%;
  height:100%;
  background-color:rgb(56,148,255);
  border-radius:20px;
  transition:all 0.1s;
}

jquery代码:

var w = 0
let w2 = 100
let t = 50
$('.time').html(t)
$('.btn').on("click", function() {
  w += 20
  $('.progress-bar .item').css("width", `${w}%`)
  console.log(w);
})


let timer = setInterval(() => {
  w2 -= 0.2
  if (w2 < 0) {
    clearInterval(timer)
  }
  console.log(w2);
  $('.count-down .item').css("width", `${w2}%`)
}, 100);
let timer2 = setInterval(() => {
  t -= 1
  if (t <= 0) {
    clearInterval(timer2)
  }
  $('.time').html(t)
}, 1000);

如何利用jQuery写一个倒计时

标签: jQuery倒计时, jQuery进度条

上面是“jQuery+css做一个倒计时进度条”的全面内容,想了解更多关于 js 内容,请继续关注web建站教程。

当前网址:https://m.ipkd.cn/webs_3821.html

声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!

vuejs实现多条文字无缝上下滚动
mysql为什么要优化IN查询语句
如何把之前的vue2项目升级到vue3
js判断手机系统是ios还是android
Python语法如何删除字符串最后一个逗号(2种方法)