|
共享下 倒计时的JS 代码,感兴趣的 同学可以 拿去用。
<Script Language="JavaScript">
var timedate= new Date("Aug 8, 2008 20:00:00");
var times="北京奥运会开幕";
var now = new Date();
var date = timedate.getTime() - now.getTime();
var time = Math.floor(date / (1000 * 60 * 60 * 24));
if (time >= 0) ;
document.write("<font style='font-size:12px;line-height:18px;color:#000000'>离"+times+"还有:</font><font style='color:#F5A100;line-height:32px;font-family:Verdana;font-size:24px;'><b>"+time +"</b></font><font style='font-size:12px;line-height:18px;color:#000000'>天</font>");
</Script> |
|