📅  最后修改于: 2022-03-11 15:01:55.212000             🧑  作者: Mango
timeLeft: number = 60;
interval;
startTimer() {
this.interval = setInterval(() => {
if(this.timeLeft > 0) {
this.timeLeft--;
} else {
this.timeLeft = 60;
}
},1000)
}
pauseTimer() {
clearInterval(this.interval);
}
{{timeLeft}} Seconds Left....