[svn r37]
This commit is contained in:
commit
694eb42357
|
@ -0,0 +1,18 @@
|
|||
body
|
||||
{
|
||||
background:black;
|
||||
}
|
||||
|
||||
div.new_year_text_css
|
||||
{
|
||||
text-align:center;
|
||||
color:red;
|
||||
font-size:50px;
|
||||
}
|
||||
|
||||
div.new_year_count_css
|
||||
{
|
||||
text-align:center;
|
||||
color:red;
|
||||
font-size:500px;
|
||||
}
|
|
@ -0,0 +1,15 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
|
||||
<head>
|
||||
<title>Appy New Year</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<link rel="stylesheet" type="text/css" href="newyear.css" />
|
||||
</head>
|
||||
|
||||
<body id=new_year_body>
|
||||
<div id=new_year_text class=new_year_text_css><span>Bonne Année dans</span></div>
|
||||
<div id=new_year_count class=new_year_count_css>
|
||||
</div>
|
||||
<script type="text/javascript" src="newyear.js" ></script>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,62 @@
|
|||
function i18n(text)
|
||||
{
|
||||
return text;
|
||||
}
|
||||
function FormatDigit(digit)
|
||||
{
|
||||
if(digit.length == 0)
|
||||
{
|
||||
return "00";
|
||||
}
|
||||
if(digit.length == 1)
|
||||
{
|
||||
return "0" + digit;
|
||||
}
|
||||
|
||||
return digit;
|
||||
}
|
||||
function GetTimeStr()
|
||||
{
|
||||
var dt=new Date()
|
||||
var h = dt.getHours().toString();
|
||||
var m = dt.getMinutes().toString();
|
||||
var s = dt.getSeconds().toString();
|
||||
|
||||
return FormatDigit(h) + ":" + FormatDigit(m) + ":" + FormatDigit(s);
|
||||
}
|
||||
|
||||
function ClockInTitle()
|
||||
{
|
||||
document.title = i18n("Happy New Year: ") + GetTimeStr();
|
||||
setTimeout("ClockInTitle()",1000);
|
||||
}
|
||||
ClockInTitle();
|
||||
|
||||
function Pause(time)
|
||||
{
|
||||
var d=new Date();
|
||||
while(1)
|
||||
{
|
||||
var n = new Date();
|
||||
var diff = n-d;
|
||||
if (diff > time)
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
/*Get controls*/
|
||||
var new_year_text = document.getElementById("new_year_text");
|
||||
var new_year_count = document.getElementById("new_year_count");
|
||||
var next_year_val = new Date().getFullYear() + 1;
|
||||
var next_year = new Date("01/01/" + next_year_val + " 00:00:00");
|
||||
var coef=1000;
|
||||
|
||||
function CountDown()
|
||||
{
|
||||
/*Init years*/
|
||||
var now = new Date();
|
||||
new_year_count.innerHTML = Math.round((next_year.getTime() - now.getTime()) / coef) + " s";
|
||||
setTimeout("CountDown()",100);
|
||||
}
|
||||
|
||||
CountDown();
|
Loading…
Reference in New Issue