Отсчет дней до Нового года
-
Заменив содержимое файла scriptfile.js в плагине получаем новогодний счетчик.
function cw_axmascount() {
today = new Date();
thismon = today.getMonth();
thisday = today.getDate();
thisyr = today.getFullYear();if (thismon==11 && thisday>1) { thisyr = ++thisyr; BigDay = new Date(‘January 1, ‘+thisyr);}
else { BigDay = new Date(‘January 1, ‘+thisyr);}msPerDay = 24*60*60*1000;
timeLeft = (BigDay.getTime() – today.getTime() – 1);
e_daysLeft = timeLeft / msPerDay;
daysLeft = Math.ceil(e_daysLeft);if (daysLeft<=0) {document.write(‘С Новым
<br>
годом!’);}
else if (daysLeft>10 & daysLeft<20) {document.write(‘до Нового года<br>
‘+daysLeft+’ дней!’);}
else if (daysLeft%10==1) {document.write(‘до Нового года<br>
‘+daysLeft+’ день!’);}
else if (daysLeft%10>1 & daysLeft%10<5) {document.write(‘до Нового года<br>
‘+daysLeft+’ дня!’);}
else {document.write(‘до Нового года<br>
‘+daysLeft+’ дней!’);}
}
- The topic ‘Отсчет дней до Нового года’ is closed to new replies.