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
|
<!DOCTYPE html>
<html>
<head>
<title>Countdown</title>
<meta http-equiv="Content-Type" content="text/html;charset=gb2312" />
<link rel="stylesheet" type="text/css" href="css/countdown.css"/>
<script type="text/javascript" src="js/jquery-1.10.2.js"></script>
<script type="text/javascript" src="js/jquery.knob.min.js"></script>
<script type="text/javascript" src="js/countdown.min.js"></script>
</head>
<body>
<div id='countdown_knob' class='timerArea' ></div>
<script>
$(document).ready(function() {
$("#countdown_def").countdown(
{
dateEnd:'11/30/2013 00:00:00',
format:true,
callback:function(){alert('Happy Birthday to U')}
},
{
timezone:false,
offset:0
}
);
$("#countdown_knob").countdown(
{
skin: 'knob',
option:{
global:{thickness:0.1},
day:{thickness:0.2},
hour:{thickness:0.4},
second:{thickness:.0}
},
dateEnd:'05/03/2014 02:00:00',
dateStart:'11/30/2013 00:00:00',
format:true,
callback:function(){alert('Tiga!')}
},
{
timezone:true,
offset:6
}
);
});
</script>
<div style="text-align:center;clear:both"><br><br>
<br>
<img src="waiting.png" width="557" height="158"><br><br>
</div>
<!-- jinwei.me Baidu tongji analytics -->
<script type="text/javascript">
var _bdhmProtocol = (("https:" == document.location.protocol) ? " https://" : " http://");
document.write(unescape("%3Cscript src='" + _bdhmProtocol + "hm.baidu.com/h.js%3F91918ac6d6854623883a2b546ebc00ac' type='text/javascript'%3E%3C/script%3E"));
</script>
</body>
</html>
|