This article example shares the specific code of Vue to implement the timer for your reference. The specific content is as follows What we do here is click the button to start and end the countdown <div class="time" v-if="rptType">{{str}}</div> <div class="receipt" :class="rptType?'jdz':'jiedan'" @click="receipt">Start</div> data(){ return { rptType: false, //Status h: 0, //Define hours, minutes, seconds, milliseconds and initialize them to 0; m:0, ms:0, s:0, time:0, str:'', } }, mounted:function(){ this.$nextTick(function () {//The entire view is rendered}) }, methods:{ getTask: function(e){ this.taskType = e; }, //Start receipt: function() { this.rptType = !this.rptType; if(this.rptType){ this.time=setInterval(this.timer,50); }else{ this.reset() } }, timer: function(){ //define timing function this.ms=this.ms+50; //millisecondsif(this.ms>=1000){ this.ms=0; this.s=this.s+1; //seconds} if(this.s>=60){ this.s=0; this.m=this.m+1; //minutes} if(this.m>=60){ this.m=0; this.h=this.h+1; //hours} this.str =this.toDub(this.h)+":"+this.toDub(this.m)+":"+this.toDub(this.s)+""/*+this.toDubms(this.ms)+"milliseconds"*/; // document.getElementById('mytime').innerHTML=h+"hour"+m+"minute"+s+"second"+ms+"millisecond"; }, toDub: function(n){ //add 0 operation if(n<10){ return "0"+n; } else { return ""+n; } }, reset: function(){ //Reset clearInterval(this.time); this.h=0; this.m=0; this.ms=0; this.s=0; this.str="00:00:00"; }, } The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: The process of deploying and running countly-server in docker in win10
>>: Will mysql's in invalidate the index?
How to set up a MySQL short link 1. Check the mys...
There are two ways to expose container ports in d...
Table of contents 1. Email 2. Mobile phone number...
This time, we will try to package the running con...
1. HTML tags with attributes XML/HTML CodeCopy co...
pssh is an open source software implemented in Py...
<br />Related articles: 9 practical tips for...
Table of contents Initialize the project Writing ...
In the database, both UNION and UNION ALL keyword...
background We often use Chrome Dev Tools for deve...
Table of contents 1 Introduction to nginx 1 What ...
I recently took over a small program project, and...
How to obtain SQL statements with performance iss...
Problem: The PHP program on one server cannot con...
This article shares the specific code of native j...