//set hàm timer trong play Game.
var timerId = setInterval(function() {
$('.ppc-progress-fill').css('transform','rotate('+ time +'deg)');
if (time > 180) {
$ppc.addClass('gt-50');
}
if (time == 360) {
time = 0;
clearInterval(timerId);
endGame();
}; time = time+3;
}, 20);
}
// su kien click true
$trueButton.click(function() {
if(statusPoint == 0) {
clearInterval(timerId);
time = 0;
$ppc.removeClass('gt-50');
} else {
clearInterval(timerId);
time = 0;
$ppc.removeClass('gt-50');
}
});
var time = 0; function playGame() {
//set hàm timer trong play Game. var timerId = setInterval(function() { $('.ppc-progress-fill').css('transform','rotate('+ time +'deg)'); if (time > 180) { $ppc.addClass('gt-50'); } if (time == 360) { time = 0; clearInterval(timerId); endGame(); }; time = time+3; }, 20); }
// su kien click true $trueButton.click(function() { if(statusPoint == 0) { clearInterval(timerId); time = 0; $ppc.removeClass('gt-50'); } else { clearInterval(timerId); time = 0; $ppc.removeClass('gt-50'); } });
}
@thanhtungtnt @lamanhdai