web建站教程
  1. 首页
  2. vuejs
  3. js
  4. 好玩
  5. AIGC工具
  6. 前端知识
  7. 百度echarts
  8. 更多
    php入门
    nodejs
    mockjs
    reactjs
    mysql
    wordpress
    织梦cms
    帝国cms
    git教程
    IT知识
    模板大全
    休息站
    手机应用

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

897 ℃

如何利用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://ipkd.cn/webs_3821.html

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

当前位置: 网站首页 > js
本文共计1149个字,预计阅读时长8分钟
生活小工具,收录了80多款小工具
上一篇: 推荐一个免费可商用psd文件素材网站——FreePik
下一篇: 一行代码轻松实现优雅的过渡动画插件——AutoAnimate
x 打工人ai神器