-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
108 lines (89 loc) · 4.37 KB
/
index.html
1
2
3
4
5
6
7
8
9
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="description" content="Angularjs-timer : Work in progress - AngularJS Timer - http://louisamoros.github.io/angular-timer">
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/stylesheet.css">
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.css">
<title>Angularjs-timer</title>
</head>
<body ng-app="angularjsTimerExample">
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<!-- HEADER -->
<div id="header_wrap" class="outer">
<header class="inner">
<a id="forkme_banner" href="https://github.com/louisamoros/angularjs-timer">View on GitHub</a>
<h1 id="project_title">Angularjs-timer</h1>
<h2 id="project_tagline">Work in progress - AngularJS Timer - http://louisamoros.github.io/angular-timer</h2>
<section id="downloads">
<a class="tar_download_link" href="https://github.com/louisamoros/angularjs-timer/tarball/master">Download this project as a tar.gz file</a>
<a class="zip_download_link" href="https://github.com/louisamoros/angularjs-timer/zipball/master">Download this project as a .zip file</a>
</section>
</header>
</div>
<!-- MAIN CONTENT -->
<div id="main_content_wrap" class="outer">
<section id="main_content" class="inner">
<h3>How to install</h3>
<p>Here goes different ways to install...</p>
<p>Bower install...</p>
<h3>How to use - timer service</h3>
<!-- Simple timer -->
<div ng-include="'examples/timer/timer.html'" ng-controller='TimerController'></div>
<!-- Simple timers -->
<div ng-include="'examples/timers/timers.html'" ng-controller='TimersController'></div>
<!-- Simple countdown -->
<div ng-include="'examples/countdown/countdown.html'" ng-controller='CountdownController'></div>
<h3>How to use - timer directive</h3>
<!-- Timer cicle -->
<div ng-include="'examples/timer-circle/timer-circle.html'" ng-controller='TimerCircleController'></div>
<!-- Simple timer display -->
timer display...
<!-- <div ng-include="'examples/timer-display/timer-display.html'" ng-controller='TimerDisplayController'></div> -->
<!-- Simple timer circle -->
<h3>Help & Source</h3>
<p>
Filter timer readable:
<a href="https://github.com/wildlyinaccurate/angular-readable-time">https://github.com/wildlyinaccurate/angular-readable-time</a>
<br>
Timer service:
<a href="http://www.bennadel.com/blog/2674-creating-a-reusable-timer-in-angularjs.html">http://www.bennadel.com/blog/2674-creating-a-reusable-timer-in-angularjs.html</a>
<br>
CSS timer effect:
<a href="http://projects.lukehaas.me/css-loaders">http://projects.lukehaas.me/css-loaders</a>
</section>
</div>
<!-- FOOTER -->
<div id="footer_wrap" class="outer">
<footer class="inner">
<p class="copyright">Angularjs-timer maintained by <a href="https://github.com/louisamoros">Louis Amoros</a></p>
<p>Published with <a href="http://pages.github.com">GitHub Pages</a></p>
</footer>
</div>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-58409562-1");
pageTracker._trackPageview();
} catch(err) {}
</script>
<!-- bower_components -->
<script src="bower_components/angular/angular.js"></script>
<script src="bower_components/angular-route/angular-route.js"></script>
<!-- angularjs-timer -->
<script src="app/angularjs-timer-directive.js"></script>
<script src="app/angularjs-timer-service.js"></script>
<!-- examples scripts -->
<script src="examples/app.js"></script>
<script src="examples/timer/TimerController.js"></script>
<script src="examples/timers/TimersController.js"></script>
<script src="examples/countdown/CountdownController.js"></script>
<script src="examples/timer-circle/TimerCircleController.js"></script>
</body>
</html>