节日倒计时flash
- 提问者网友:浮克旳回音
- 2021-04-28 08:01
- 五星知识达人网友:神也偏爱
- 2021-04-28 08:39
我把代码给你看,自己研究一哈就会了,这主要是写代码的,给你看的是奥运会的倒计时,需要的话自己把时间改一哈就可以变成你想要的节日的倒计时了。onEnterFrame = function () {
myDate = new Date(); milli = myDate.getMilliseconds(); second = myDate.getSeconds();
minute = myDate.getMinutes(); hours = myDate.getHours(); MC_sec._rotation = second*6+milli/160; MC_min._rotation = minute*6+second/10; MC_hour._rotation = hours*30+minute/2; weekday = new Array('日', '一', '二', '三', '四', '五', '六'); year = myDate.getFullYear(); month = myDate.getMonth()+1; day = myDate.getDate(); week = myDate.getDay(); date = year+"年"+month+"月"+day+"日"; week = "星期"+weekday[week]; EndTime = new Date(2010,5,16, 0, 0, 0); // 定义倒计时结束时间,此处为2008北京奥运开幕日 // 注意,月份参数用0-11表示1-12月 NowTime = new Date(); // 定义当前时间 zong = Math.floor((EndTime.getTime()-NowTime.getTime())/1000); // 取得当前时间与结束时间相差的总秒数 if (zong>0) { tian = Math.floor(zong/(60*60*24)); // 取得剩余天数 DaoJiShiText = String(tian)+"天"; };
};