1 [code]Đếm ngược thời gian của diễn đàn Sat Sep 01, 2012 10:34 am
tatthang
Thành viên cao cấp
Code này do Admin viết lại.
- Code:
<div style="text-align: center; font-family: Arial;"><font style="color: Yellow; background-color: Red;" size="4"><span style="font-weight: bold;"><script type="text/javascript">
function setcountdown(theyear,themonth,theday){
yr=theyear;mo=themonth;da=theday
}
function time2text()
{
//////////CẤU HÌNH ĐẾM NGƯỢC Ở ĐÂY//////////////////
//Đặt đích đến là ngày đếm ngược,theo định dạng năm, tháng, ngày ví dụ ở đây là ngày 1.12.2012:
setcountdown(2012,12,1)
var montharray=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")
var crosscount=''
var today=new Date()
var todayy=today.getYear()
if (todayy < 1000)
todayy+=1900
var todaym=today.getMonth()
var todayd=today.getDate()
var todayh=today.getHours()
var todaymin=today.getMinutes()
var todaysec=today.getSeconds()
var todaystring=montharray[todaym]+" "+todayd+", "+todayy+" "+todayh+":"+todaymin+":"+todaysec
futurestring=montharray[mo-1]+" "+da+", "+yr
dd=Date.parse(futurestring)-Date.parse(todaystring)
dday=Math.floor(dd/(60*60*1000*24)*1)
dhour=Math.floor((dd%(60*60*1000*24))/(60*60*1000)*1)
dmin=Math.floor(((dd%(60*60*1000*24))%(60*60*1000))/(60*1000)*1)
dsec=Math.floor((((dd%(60*60*1000*24))%(60*60*1000))%(60*1000))/1000*1)
var _return = '';
_return+= dday+ " ngày, "+dhour+" giờ, "+dmin+" phút và "+dsec+" giây "
return _return.fontsize("3").fontcolor("#FFFF00").bold();
;
}
function showtime(sID)
{
var dau="Còn "
dau=dau.fontsize("3").fontcolor("#FFFF00").bold();
var cuoi=" đến ngày bảo vệ đợt đầu Luận văn Tốt nghiệp";
cuoi=cuoi.fontsize("3").fontcolor("#FFFF00").bold();
document.getElementById(sID).innerHTML =dau+ time2text() +cuoi;
window.setTimeout("showtime('"+sID+"')", 1000);
}
</script>
</head>
<body>
<table align="center">
<tr>
<td></td>
<td id="event-1"><script type="text/javascript">showtime('event-1'); </script> </td>
</tr>
</table>
</span></font></div>