-
Notifications
You must be signed in to change notification settings - Fork 149
/
index.html
66 lines (62 loc) · 3.03 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
<!DOCTYPE HTML>
<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">
<script type="text/javascript" src="inc/TimeCircles.js"></script>
<link rel="stylesheet" href="inc/TimeCircles.css" />
</head>
<body>
<div class="container">
<h1>TimeCircle examples</h1>
<h2>Time until 2014</h2>
<div id="DateCountdown" data-date="2014-01-01 00:00:00" style="width: 500px; height: 125px; padding: 0px; box-sizing: border-box; background-color: #E0E8EF"></div>
<div style="padding: 10px;">
<input type="date" id="date" value="2014-01-01">
<input type="time" id="time" value="00:00">
</div>
<hr>
<h2>Counting down 15 minutes (900 seconds)</h2>
<div id="CountDownTimer" data-timer="900" style="width: 1000px; height: 250px;"></div>
<button class="btn btn-success startTimer">Start Timer</button>
<button class="btn btn-danger stopTimer">Stop Timer</button>
<hr>
<h2>Time since page was opened</h2>
<div>
<div style="float: left; width: 100px;">
<br>
<button class="btn btn-success btn-block fadeIn">Fade in</button><br>
<button class="btn btn-danger btn-block fadeOut">Fade out</button>
</div>
<div id="PageOpenTimer" style="width: 500px; height: 125px; float: left"></div>
</div>
</div>
<script>
$("#DateCountdown").TimeCircles();
$("#CountDownTimer").TimeCircles({ time: { Days: { show: false }, Hours: { show: false } }});
$("#PageOpenTimer").TimeCircles();
var updateTime = function(){
var date = $("#date").val();
var time = $("#time").val();
var datetime = date + ' ' + time + ':00';
$("#DateCountdown").data('date', datetime).TimeCircles().start();
}
$("#date").change(updateTime).keyup(updateTime);
$("#time").change(updateTime).keyup(updateTime);
// Start and stop are methods applied on the public TimeCircles instance
$(".startTimer").click(function() {
$("#CountDownTimer").TimeCircles().start();
});
$(".stopTimer").click(function() {
$("#CountDownTimer").TimeCircles().stop();
});
// Fade in and fade out are examples of how chaining can be done with TimeCircles
$(".fadeIn").click(function() {
$("#PageOpenTimer").fadeIn();
});
$(".fadeOut").click(function() {
$("#PageOpenTimer").fadeOut();
});
</script>
</body>
</html>