Jump to content

A fixed time zone count up


deejaybet

Recommended Posts

ok i have a count up script:

<script language="JavaScript1.2">function setcountup(theyear,themonth,theday){yr=theyear;mo=themonth;da=theday}setcountup(2005,5,22)var displaymessage="have passed since the debut of our site!"var countupwidth='95%'var countupheight='20px' //applicable only in NS4var countupbgcolor='lightyellow'var opentags='<font face="Verdana"><small>'var closetags='</small></font>'var montharray=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")var crosscount=''function start_countup(){if (document.layers)document.countupnsmain.visibility="show"else if (document.all||document.getElementById)crosscount=document.getElementById&&!document.all?document.getElementById("countupie") : countupiecountup()}if (document.all||document.getElementById)document.write('<span id="countupie" style="width:'+countupwidth+'; background-color:'+countupbgcolor+'"></span>')window.onload=start_countupfunction countup(){var today=new Date()var todayy=today.getYear()if (todayy < 1000)todayy+=1900var 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+":"+todaysecpaststring=montharray[mo-1]+" "+da+", "+yrdd=Date.parse(todaystring)-Date.parse(paststring)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)if (document.layers){document.countupnsmain.document.countupnssub.document.write(opentags+dday+ " days, "+dhour+" hours, "+dmin+" minutes, and "+dsec+" seconds "+displaymessage+closetags)document.countupnsmain.document.countupnssub.document.close()}else if (document.all||document.getElementById)crosscount.innerHTML=opentags+dday+ " days, "+dhour+" hours, "+dmin+" minutes, and "+dsec+" seconds "+displaymessage+closetagssetTimeout("countup()",1000)}</script><ilayer id="countupnsmain" width=&{countupwidth}; height=&{countupheight}; bgColor=&{countupbgcolor}; visibility=hide><layer id="countupnssub" width=&{countupwidth}; height=&{countupheight}; left=0 top=0></layer></ilayer>

but i want the script to be for a fixed time zone

UTC+100

i also want to make the script count up from a certain timeexample:count from:22 May 2005 10:30 PM UTC+100

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...