js实现倒计时器自定义时间和暂停


Posted in Javascript onFebruary 25, 2019

js倒计时器可自定义时间和暂停,效果如下,点击start 开始计时,end结束计时

js实现倒计时器自定义时间和暂停

分别复制 H5 css js 代码即可实现,具体的算法在js控制函数中(都写了注释)

css

html,body{
width:100%;height:100%;
}
.content{
height:100%;width:100%; 
}
.row-center{
display:flex;flex-direction:row;justify-content:center;
align-items:center;
}
.tc-input-style{
outline:none;border:none;width:20%;height:80%;border-radius:10px;
}
.tc-span-style{
width:30%;height:100%;font-weight:bold;
}
.tc-font-style{
font-size:15px;font-weight:bold;
}
.tc-div-style1{
height:33%;width:100%
}
.tc-div-style0{
height:30%;width:100%
}
.tc-div-style2{
height:10%;width:100%; 
}
.tc-div-style3{
height:100%;width:30%
}
.column-center{
display:flex;flex-direction:column;justify-content:center;
align-items:center;
}
.column-start-center{
display:flex;flex-direction:column;justify-content:flex-start;
align-items:center;
}
#timecount{
height:50%;width:20%;
}
.button-style-0{
border-radius:10px;
}
.row-space-around{
display:flex;flex-direction:row;justify-content:space-around;
align-items:center;
}

h5

<body>
<div class="content row-center"> 

  <div id="timecount" class="column-center tc-font-style" >
  <div class="column-start-center tc-div-style0" >
  <div class="row-center tc-div-style1" ><span class="tc-span-style row-center">小时:</span><input class=tc-input-style id="hour_count" value="0"> </div>
  <div class="row-center tc-div-style1" ><span class="tc-span-style row-center">分钟:</span><input class=tc-input-style id="minute_count" value="0"> </div>
  <div class="row-center tc-div-style1" ><span class="tc-span-style row-center">秒:</span><input class=tc-input-style id="second_count" value="0"> </div>
  </div>

  <div class="row-center tc-div-style2">
  <div class="row-center tc-div-style3" id="hour_show" ></div>
  <div class="row-center tc-div-style3" id="minute_show"></div>
  <div class="row-center tc-div-style3" id="second_show"></div>
  </div>

  <div class="row-space-around tc-div-style2">
  <button class="button-style-0" onclick="timecounts()">start</button>
  <button class="button-style-0" onclick="timestop()">stop</button>
  </div>

  </div>


</div>
</body>

记得引入jq

<script src="https://cdn.bootcss.com/jquery/2.1.1/jquery.min.js"></script>

JS

<script type="text/javascript">
var timecount;//定义一个全局变量
function timer(intDiff){
 //定义一个循环函数每一秒定时执行
 timecount=setInterval(function(){
 var hour=0,
 minute=0,
 second=0;//初始化时间默认值 
 //算法控制
 if(intDiff > 0){
 hour = Math.floor(intDiff / (60 * 60)) ;
 minute = Math.floor(intDiff / 60) - (hour * 60);
 second = Math.floor(intDiff) - (hour * 60 * 60) - (minute * 60);
 }
 if (minute <= 9) minute = '0' + minute;
 if (second <= 9) second = '0' + second;
 //打印到dom
 $('#hour_show').html('<s id="h"></s>'+hour+'时');
 $('#minute_show').html('<s></s>'+minute+'分');
 $('#second_show').html('<s></s>'+second+'秒');
 intDiff--;
 }, 1000);
 console.log(intDiff); 
}

function timecounts(){
 console.log($("#hour_count").val())
 count=parseInt($("#hour_count").val()*3600)+parseInt($("#minute_count").val()*60)+parseInt($("#second_count").val())
 timer(count);//调用计时器函数
 console.log(count);
}
function timestop(){
 var hour= $("#hour_show").text();
 var minute= $("#minute_show").text();
 var second= $("#second_show").text();
 var time=parseInt($("#hour_show").text())*3600+parseInt($("#minute_show").text())*60+parseInt($("#second_show").text())
 console.log(time);
 timecount=window.clearInterval(timecount);//停止计时器
}
</script>

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Javascript 相关文章推荐
关于__defineGetter__ 和__defineSetter__的说明
May 12 Javascript
Javascript 网页水印(非图片水印)实现代码
Mar 01 Javascript
javascript setTimeout()传递函数参数(包括传递对象参数)
Apr 07 Javascript
查看源码的工具 学习jQuery源码不错的工具
Dec 26 Javascript
JS 实现获取打开一个界面中输入的值
Mar 19 Javascript
JavaScript 学习笔记之操作符(续)
Jan 14 Javascript
JS+CSS实现经典的左侧竖向滑动菜单效果
Sep 23 Javascript
js检测离开或刷新页面时表单数据是否更改的方法
Aug 02 Javascript
详解angular2实现ng2-router 路由和嵌套路由
Mar 24 Javascript
原理深度解析Vue的响应式更新比React快
Apr 04 Javascript
JavaScript indexOf()原理及使用方法详解
Jul 09 Javascript
JavaScript实现沿五角星形线摆动的小圆实例详解
Jul 28 Javascript
JS module的导出和导入的实现代码
Feb 25 #Javascript
js实现多个倒计时并行 js拼团倒计时
Feb 25 #Javascript
js实现网页同时进行多个倒计时功能
Feb 25 #Javascript
js实现一个页面多个倒计时的3种方法
Feb 25 #Javascript
Vue自定义指令上报Google Analytics事件统计的方法
Feb 25 #Javascript
写一个Vue Popup组件
Feb 25 #Javascript
利用Webpack实现小程序多项目管理的方法
Feb 25 #Javascript
You might like
Terran历史背景
2020/03/14 星际争霸
聊天室php&amp;mysql(四)
2006/10/09 PHP
Discuz 模板语句分析及知识技巧
2009/08/21 PHP
PHP array操作10个小技巧分享
2011/06/23 PHP
PHP运行环境配置与开发环境的配置(图文教程)
2013/06/04 PHP
php+mysql数据库查询实例
2015/01/21 PHP
php中10个不同等级压缩优化图片操作示例
2016/11/14 PHP
Laravel 登录后清空COOKIE的操作方法
2019/10/14 PHP
JQuery 表单中textarea字数限制实现代码
2009/12/07 Javascript
广泛收集的jQuery拖放插件集合
2012/04/09 Javascript
Javascript中call与apply的学习笔记
2014/09/22 Javascript
javascript 操作符(~、&amp;、|、^、)使用案例
2014/12/31 Javascript
jQuery使用before()和after()在元素前后添加内容的方法
2015/03/26 Javascript
JS实现具备延时功能的滑动门菜单效果
2015/09/17 Javascript
jQuery Validate 校验多个相同name的方法
2017/05/18 jQuery
详解使用vuex进行菜单管理
2017/12/21 Javascript
vue中锚点的三种方法
2018/07/06 Javascript
JS使用栈判断给定字符串是否是回文算法示例
2019/03/04 Javascript
React组件对子组件children进行加强的方法
2019/06/23 Javascript
node.js处理前端提交的GET请求
2019/08/30 Javascript
javascript开发实现贪吃蛇游戏
2020/07/31 Javascript
解决Vue项目中tff报错的问题
2020/10/21 Javascript
[01:08]DOTA2次级职业联赛 - Shield战队宣传片
2014/12/01 DOTA
跟老齐学Python之Import 模块
2014/10/13 Python
Python学习笔记之解析json的方法分析
2017/04/21 Python
解决python3 json数据包含中文的读写问题
2018/05/10 Python
Python实现爬虫从网络上下载文档的实例代码
2018/06/13 Python
Python提取特定时间段内数据的方法实例
2019/04/01 Python
python字符串分割及字符串的一些常规方法
2019/07/24 Python
Python Scrapy框架:通用爬虫之CrawlSpider用法简单示例
2020/04/11 Python
详解tf.device()指定tensorflow运行的GPU或CPU设备实现
2021/02/20 Python
大学生自我鉴定
2013/12/16 职场文书
王金山在党的群众路线教育实践活动总结大会上的讲话稿
2014/10/25 职场文书
2016年寒假见闻
2015/10/10 职场文书
常用的MongoDB查询语句的示例代码
2021/07/25 MongoDB
如何在Python中妥善使用进度条详解
2022/04/05 Python