37 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
| <!DOCTYPE html>
 | |
| <html>
 | |
| <head>
 | |
| <meta http-equiv="Content-Type" content="text/html;charset=utf-8">
 | |
| <title>jQuery Countdown</title>
 | |
| <link rel="stylesheet" href="css/jquery.countdown.css">
 | |
| <style type="text/css">
 | |
| #defaultCountdown { width: 240px; height: 45px; }
 | |
| </style>
 | |
| <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
 | |
| <script src="js/jquery.plugin.min.js"></script>
 | |
| <script src="js/jquery.countdown.js"></script>
 | |
| <script>
 | |
| $(function () {
 | |
| 	var austDay = new Date();
 | |
| 	austDay = new Date(austDay.getFullYear() + 1, 1 - 1, 26);
 | |
| 	$('#defaultCountdown').countdown({until: austDay});
 | |
| 	$('#year').text(austDay.getFullYear());
 | |
| });
 | |
| </script>
 | |
| </head>
 | |
| <body>
 | |
| <h1>jQuery Countdown Basics</h1>
 | |
| <p>This page demonstrates the very basics of the
 | |
| 	<a href="http://keith-wood.name/countdown.html">jQuery Countdown plugin</a>.
 | |
| 	It contains the minimum requirements for using the plugin and
 | |
| 	can be used as the basis for your own experimentation.</p>
 | |
| <p>For more detail see the <a href="http://keith-wood.name/countdownRef.html">documentation reference</a> page.</p>
 | |
| <p>Counting down to 26 January <span id="year">2014</span>.</p>
 | |
| <div id="defaultCountdown"></div>
 | |
| <dl>
 | |
| 	<dt>Github</dt><dd><a href="https://github.com/kbwood/countdown">https://github.com/kbwood/countdown</a></dd>
 | |
| 	<dt>Bower</dt><dd>kbw-countdown</dd>
 | |
| </dl>
 | |
| </body>
 | |
| </html>
 |