Jump to content
  • 0

До Нового Года осталось?


UnFeeLing
 Share

Question

3 answers to this question

Recommended Posts

  • 0

я не раз встречал скрипт в нете.

к сожелению линков не сохронял,

но данный скрипт широко распрастранен

и вроде не должно возникнуть проблем с его поиском по гуглю

Link to comment
Share on other sites

  • 0

<html>
<head>
<title>Скрипт показывает сколько дней осталось до нового года</title>
</head>
<body>
<script language="JavaScript1.2">
//Script courtesy of Sharon Gartenberg's Date Countdown
//JavaScript generator under the GNU General Public License
var today = new Date;
var Future0 = new Date;
ThisYear = 2007;

var FutureMonth = 11;
var FutureDate = 31;
var faraevent = "";

Future0.setMonth(FutureMonth, FutureDate);
Future0.setFullYear(ThisYear);

today1 = Date.parse(today);
future1 = Date.parse(Future0);
secleft = future1 - today1;
miliday = 24 * 60 * 60 * 1000;
daysleft = secleft/miliday;
daysleftint = Math.round(daysleft);

if (daysleftint > 1)
document.write("<font color=#ff0000>До нового года ", daysleftint, " дней", faraevent , "!</font>");
else if (daysleftint == 1)
document.write(faraevent, " is tomorrow! ");
else if (today1 == future1)
document.write(faraevent, " is today! ");
</script>
</body>
</html>

Вот нашел но показывает только дни :)

Как переделать?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy