DIR : /home/kozerus/public_html/ko/timers10.html

/home/kozerus/public_html/ko

<html>
<head>
	<style>
		p {
			text-align: center;
			font-size: 60px;
			}
		</style>
	</head>
<body bgcolor=linen>
<p id="demo"></p>
<script>
	var deadline = new Date("Jan 5, 2018 15:37:25").getTime();
	var x = setInterval(function() {
		var now = new Date().getTime();
		var t = deadline - now;
		var days = Math.floor(t / (1000 * 60 * 60 * 24));
		var hours = Math.floor((t%(1000 * 60 * 60 * 24))/(1000 * 60 * 60));
		var minutes = Math.floor((t % (1000 * 60 * 60)) / (1000 * 60));
		var seconds = Math.floor((t % (1000 * 60)) / 1000);
		document.getElementById("demo").innerHTML = days + "d "  + hours + "h " + minutes + "m " + seconds + "s ";
		if (t < 0) {
			clearInterval(x);
			document.getElementById("demo").innerHTML = "EXPIRED";
			}
		}, 1000);
		</script>
  
	</body>
	</html>
//


koh5_pano



Your browser does not support the HTML5 canvas element.


Drag mouse to navigate.

Navigation





17.Aug.2010, Martin Wengenmayer