[svn r39] add icon + manage message
This commit is contained in:
parent
de9ae97e94
commit
82496dc3f6
|
@ -14,5 +14,5 @@ div.new_year_count_css
|
||||||
{
|
{
|
||||||
text-align:center;
|
text-align:center;
|
||||||
color:red;
|
color:red;
|
||||||
font-size:500px;
|
font-size:250px;
|
||||||
}
|
}
|
||||||
|
|
26
newyear.js
26
newyear.js
|
@ -47,16 +47,34 @@ function Pause(time)
|
||||||
/*Get controls*/
|
/*Get controls*/
|
||||||
var new_year_text = document.getElementById("new_year_text");
|
var new_year_text = document.getElementById("new_year_text");
|
||||||
var new_year_count = document.getElementById("new_year_count");
|
var new_year_count = document.getElementById("new_year_count");
|
||||||
var next_year_val = new Date().getFullYear() + 1;
|
var next_year_val;
|
||||||
var next_year = new Date("01/01/" + next_year_val + " 00:00:00");
|
var next_year;
|
||||||
var coef=1000;
|
var coef=1000;
|
||||||
|
function calcNextYear()
|
||||||
|
{
|
||||||
|
next_year_val = new Date().getFullYear() + 1;
|
||||||
|
next_year = new Date("01/01/" + next_year_val + " 00:00:00");
|
||||||
|
}
|
||||||
|
|
||||||
function CountDown()
|
function CountDown()
|
||||||
{
|
{
|
||||||
/*Init years*/
|
/*Init years*/
|
||||||
var now = new Date();
|
var now = new Date();
|
||||||
new_year_count.innerHTML = Math.round((next_year.getTime() - now.getTime()) / coef) + " s";
|
var countdown = Math.round((next_year.getTime() - now.getTime()) / coef);
|
||||||
setTimeout("CountDown()",100);
|
if(countdown < 1 )
|
||||||
|
{
|
||||||
|
new_year_count.innerHTML = "BONNE ANNE !! YOUPI";
|
||||||
|
if(countdown > -60)
|
||||||
|
{
|
||||||
|
calcNextYear();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
new_year_count.innerHTML = countdown + " s";
|
||||||
|
}
|
||||||
|
setTimeout("CountDown()",250);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
calcNextYear();
|
||||||
CountDown();
|
CountDown();
|
Loading…
Reference in New Issue