The Table of Context.
1. The code sample for HTML page.
2. The code sample for AngularJs.
3. The Full Example over the countdown timer.
The code sample for HTML page.
1. The code sample for HTML page.
2. The code sample for AngularJs.
3. The Full Example over the countdown timer.
The code sample for HTML page.
1
2
3
4
5
| < div ng-app ng-controller = "CountDownWatchCtrl" > < div ng-show="countDown_tick > 0">Your password is expired in 180 Seconds.</ div > < div ng-show="countDown_tick > 0">Seconds left {{countDown_tick}}</ div > < div ng-show = "countDown_tick == 0" >Your password is expired!.</ div > </ div > |
<div ng-app ng-controller="CountDownWatchCtrl"> <div ng-show="countDown_tick > 0">Your password is expired in 180 Seconds.</div> <div ng-show="countDown_tick > 0">Seconds left {{countDown_tick}}</div> <div ng-show="countDown_tick == 0">Your password is expired!.</div> </div>The code sample for AngularJs.
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
| function CountDownWatchCtrl($scope, $timeout) { var totalcountDown = 10; var countDowWatch = function () { if (totalcountDown < 0) { totalcountDown = 0; return ; } else { $scope.countDown_tick = totalcountDown; totalcountDown--; $timeout(countDowWatch, 1000); } }; $scope.countDown_tick = totalcountDown; countDowWatch() } |
function CountDownWatchCtrl($scope, $timeout) { var totalcountDown = 10; var countDowWatch = function () { if (totalcountDown < 0) { totalcountDown = 0; return; } else { $scope.countDown_tick = totalcountDown; totalcountDown--; $timeout(countDowWatch, 1000); } }; $scope.countDown_tick = totalcountDown; countDowWatch() }The Full Example over the countdown timer.
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
| <!DOCTYPE html> < html > < head > < title >countdown timer in angularjs</ title > < script > function CountDownWatchCtrl($scope, $timeout) { var totalcountDown = 10; var countDowWatch = function () { if (totalcountDown < 0 ) { totalcountDown = 0 ; return; } else { $ scope.countDown_tick = totalcountDown ; totalcountDown--; $timeout(countDowWatch, 1000); } }; $ scope.countDown_tick = totalcountDown ; countDowWatch() } </script> </ head > < body > < div ng-app ng-controller = "CountDownWatchCtrl" > < div ng-show="countDown_tick > 0">Your password is expired in 180 Seconds.</ div > < div ng-show="countDown_tick > 0">Seconds left {{countDown_tick}}</ div > < div ng-show = "countDown_tick == 0" >Your password is expired!.</ div > </ div > </ body > </ html > |
<!DOCTYPE html> <html> <head> <title>countdown timer in angularjs</title> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.8/angular.min.js"></script> <script> function CountDownWatchCtrl($scope, $timeout) { var totalcountDown = 10; var countDowWatch = function () { if (totalcountDown < 0) { totalcountDown = 0; return; } else { $scope.countDown_tick = totalcountDown; totalcountDown--; $timeout(countDowWatch, 1000); } }; $scope.countDown_tick = totalcountDown; countDowWatch() } </script> </head> <body> <div ng-app ng-controller="CountDownWatchCtrl"> <div ng-show="countDown_tick > 0">Your password is expired in 180 Seconds.</div> <div ng-show="countDown_tick > 0">Seconds left {{countDown_tick}}</div> <div ng-show="countDown_tick == 0">Your password is expired!.</div> </div> </body> </html>