
<!-- 
var flasher = false 
// calculate current time, determine flasher state, 
// and insert time into status bar every second 
function updateTime() { 
var now = new Date() 
var theHour = now.getHours() 
var theMin = now.getMinutes() 
var theTime = "★☆★欢迎来到中南民族大学团体联合会   ◆   " 



if (theHour < 2){theTime += ("已经是第二天啦，该睡觉啦~~★☆★")}
else if (theHour < 5){theTime += ("夜深人静，请将音量调小，以免影响他人休息!★☆★")}
else if (theHour < 6){theTime += ("快天亮啦，你还不睡呀!又熬夜了~~~★☆★")}
else if (theHour < 8){theTime += ("你知道么，现在是一天中网速最快的时间★☆★")}
else if (theHour < 11){theTime += ("上午好!今天你看起来很精神哦!★☆★")}
else if (theHour < 12){theTime += ("午餐时间快到了，准备吃啥呢?★☆★")}
else if (theHour < 13){theTime += ("中午好!吃午餐了吧?★☆★")}
else if (theHour < 15){theTime += ("你不午睡么?★☆★")}
else if (theHour < 17){theTime += ("下午好!你现在看起来很棒哦!★☆★")}
else if (theHour < 18){theTime += ("快要吃晚餐啦!吃饱一点哦★☆★")}
else if (theHour < 19){theTime += ("天黑了，你吃过饭了没?★☆★")}
else if (theHour < 20){theTime += ("快要吃晚餐啦!吃饱一点哦★☆★")}
else if (theHour < 22){theTime += ("晚上好，今晚没有什么节目么?★☆★")}
else if (theHour < 23){theTime += ("你一晚上都在上网哦~★☆★")}
else if (theHour < 24){theTime += ("很晚了也～你还不睡么?★☆★")}

theTime += "      【北京时间 " + (theHour) 
theTime += ((flasher) ? " " : ":") 
theTime += ((theMin < 10) ? "0" : "") + theMin + "】"

flasher = !flasher 
window.status = theTime 
// recursively call this function every second to keep timer going 
timerID = setTimeout("updateTime()",1000) 
} 
updateTime()
//--> 

<!-- 此特效由铁钉（QQ：170146438）编辑制作-->