twenty-four-hour-clock-custom-time.html 550 Bytes
Newer Older
sistem17user committed
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
<html>
	<head>
		<link rel="stylesheet" href="../compiled/flipclock.css">

		<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>

		<script src="../compiled/flipclock.js"></script>		
	</head>
	<body>
		<div class="clock" style="margin:2em;"></div>

		<script type="text/javascript">
			var clock;
			
			$(document).ready(function() {
				var date = new Date('2014-01-01 05:02:12 pm');

				clock = $('.clock').FlipClock(date, {
					clockFace: 'TwentyFourHourClock'
				});
			});
		</script>
		
	</body>
</html>