Angular2实现的秒表及改良版示例


Posted in Javascript onMay 10, 2019

本文实例讲述了Angular2实现的秒表及改良版。分享给大家供大家参考,具体如下:

初版

代码:

export class Watches {
  id: number;
  str: string;
}
export let watcheList: Watches[] = [{
  id: 0, str: '123456'
}, {
  id: 1, str: '564822'
}]
//watchList 是一个静态类
watchList = watcheList;
watchStr: string;
//判断是否是第一次点击startWatch
num: number = 0;
//分 秒 毫秒
minute: number = 0;
second: number = 0;
millisecond: number = 0;
//临时变量 存储计次时的时间,后加入watcheList数组
temp= {
 id: 0,
 str: '0'
};
//定时器的名字
inter: any;
constructor() { }
 resetWatch() {
   //清零
  this.millisecond = 0;
  this.second = 0;
  this.minute = 0;
  this.temp.str = '000000';
  watcheList.length = 0;
 }
timer() {
  //每隔43ms,调用该函数,所以增加43
 this.millisecond = this.millisecond + 43;
 if (this.millisecond >= 1000) {
  this.millisecond = 0;
  this.second = this.second + 1;
 }
 if (this.second >= 60) {
  this.second = 0;
  this.minute = this.minute + 1;
 }
//当小于10是,在前面加一个0,形式则变为00:00:00
 this.watchStr = (this.minute > 10 ? this.minute : '0' + this.minute) + ':'
  + (this.second > 10 ? this.second : '0' + this.second) + ':'
  + (this.millisecond > 10 ? this.millisecond : '0' + this.millisecond);
}
 startWatch(event) {
  this.num = this.num + 1;
  if (this.num > 1) {
   //该状态应该为计次
   temp.id = this.watchList.length;
   temp.str = this.watchStr;
   this.watchList.push(temp);
  } else {
   this.inter = setInterval(() => {
    this.timer();
   }, 43);
  }
 }
 stopWatch(event) {
  this.num = 0;
  if (this.inter) {
   clearInterval(this.inter);
  }
 }
}

原理:

在计时器timer函数里面,定义了一个变量毫秒millisecond,每隔43ms调用timer函数,所以millisecond每次增加43,而后1000ms之后seond增加1,60s之后,minute增加1.

缺点:

函数的运行时间不可控,所以毫秒的增加不准确。

改良版

代码:

// 秒表
export class Watches {
  id: number;
  value: number;
}
export let watcheList: Watches[] = []
export class StopwatchComponent {
 //导入的静态类
 watchList = watcheList;
 //临时变量,用来存贮计次时的时间
 temp: number;
 //判断startWatch是第一次开始,还是计次
 num: number = 0;
 //开始时间
 startTime: number;
 //当前时间
 nowTime: number;
 //时间差
 timerRunner: number = 0;
 //interval函数的名称
 inter: any;
 constructor() { }
 resetWatch() {
  //清零
  this.timerRunner = 0;
  this.watchList.length = 0;
 }
 startWatch(event) {
  this.temp = this.timerRunner;
  //开始计时的时间
  this.startTime = Date.now();
  this.num = this.num + 1;
  if (this.num > 1) {
   //当前状态为计时,将计时的数据加入进watchList
   let watchObj: Watches = {
    id: 0,
    value: 0
   }
   watchObj.id = this.watchList.length;
   watchObj.value = this.timerRunner;
   this.watchList.push(watchObj);
  } else {
   this.inter = setInterval(() => {
    this.nowTime = Date.now();
    this.timerRunner = this.temp + this.nowTime - this.startTime;
   }, 43);
  }
 }
 stopWatch(event) {
  this.num = 0;
  if (this.inter) {
   clearInterval(this.inter);
  }
 }
}

原理:当第一次点击startWatch时,获取当前时间作为开始时间,并每43ms触发定时器,获取最新时间。时间差则为最新时间减去开始时间

Javascript 相关文章推荐
Javascript中自动切换焦点实现代码
Dec 15 Javascript
JS将数字转换成三位逗号分隔的样式(示例代码)
Feb 19 Javascript
将字符串中由空格隔开的每个单词首字母大写
Apr 06 Javascript
jQuery表格插件datatables用法详解
Nov 23 Javascript
非常实用的js验证框架实现源码 附原理方法
Jun 08 Javascript
js获取html的span标签的值方法(超简单)
Jul 26 Javascript
微信小程序-详解数据缓存
Nov 24 Javascript
js实现添加删除表格(两种方法)
Apr 27 Javascript
JavaScript截屏功能的实现代码
Jul 28 Javascript
vue给对象动态添加属性和值的实例
Sep 09 Javascript
react quill中图片上传由默认转成base64改成上传到服务器的方法
Oct 30 Javascript
解决$store.getters调用不执行的问题
Nov 08 Javascript
node中IO以及定时器优先级详解
May 10 #Javascript
使用Node.js写一个代码生成器的方法步骤
May 10 #Javascript
Easyui 去除jquery-easui tab页div自带滚动条的方法
May 10 #jQuery
使用vue脚手架(vue-cli)搭建一个项目详解
May 09 #Javascript
Node.js实现用户评论社区功能(体验前后端开发的乐趣)
May 09 #Javascript
微信小程序中显示倒计时代码实例
May 09 #Javascript
微信小程序日历弹窗选择器代码实例
May 09 #Javascript
You might like
php设计模式 State (状态模式)
2011/06/26 PHP
php注销代码(session注销)
2012/05/31 PHP
header跳转和include包含问题详解
2012/09/08 PHP
php输出金字塔的2种实现方法
2014/12/16 PHP
php 浮点数比较方法详解
2017/05/05 PHP
Gird组件 Part-3:范例RSSFeed Viewer
2007/03/10 Javascript
JavaScript 拾漏补遗
2009/12/27 Javascript
JavaScript中的字符串操作详解
2013/11/12 Javascript
javascript获取flash版本号的方法
2014/11/20 Javascript
JQuery EasyUI的使用
2016/02/24 Javascript
JS求解三元一次方程组值的方法
2017/01/03 Javascript
基于javascript实现数字英文验证码
2017/01/25 Javascript
node学习记录之搭建web服务器教程
2017/02/16 Javascript
JS简单添加元素新节点的方法示例
2018/02/10 Javascript
Vue.js特性Scoped Slots的浅析
2019/02/20 Javascript
js实现div色块拖动录制
2020/01/16 Javascript
Python3读取UTF-8文件及统计文件行数的方法
2015/05/22 Python
Pipenv一键搭建python虚拟环境的方法
2018/05/22 Python
对Python2与Python3中__bool__方法的差异详解
2018/11/01 Python
python 安装移动复制第三方库操作
2020/07/13 Python
html5实现的便签特效(实战分享)
2013/11/29 HTML / CSS
美国知名奢侈美容品牌零售商:Cos Bar
2017/04/21 全球购物
Shoes For Crews法国官网:美国领先的防滑鞋设计和制造商
2018/01/01 全球购物
英语专业毕业生自我鉴定
2013/11/09 职场文书
出国留学介绍信
2014/01/13 职场文书
七匹狼男装广告词
2014/03/21 职场文书
初中班级口号
2014/06/09 职场文书
2014财务年终工作总结
2014/12/08 职场文书
小学教师先进事迹材料
2014/12/15 职场文书
解除同居协议书
2015/01/29 职场文书
ktv服务员岗位职责
2015/02/09 职场文书
公司规章制度范本
2015/08/03 职场文书
化工厂员工工作总结
2015/10/15 职场文书
Python中异常处理用法
2021/11/27 Python
Vue监视数据的原理详解
2022/02/24 Vue.js
Java中的随机数Random
2022/03/17 Java/Android