Jump to content
  • USF Bulls fans join us at The Bulls Pen

    It's simple, free and connects you to other South Florida Bulls fans!

  • Members do not see this ad, Register

Countdown Clock


Recommended Posts


  • Group:  Bull Backers
  • Topic Count:  0
  • Content Count:  894
  • Reputation:   0
  • Days Won:  0
  • Joined:  09/08/2005

gousfbulls.com has a countdown to kick-off clock. For some odd reason it appears to be counting down to September 1st at 8:35pm.

Link to comment
Share on other sites


  • Group:  Member
  • Topic Count:  0
  • Content Count:  1,433
  • Reputation:   1
  • Days Won:  0
  • Joined:  12/04/2004

It's a little conspiracy and trickeration by the HOT.  They are more interested in the countdown to the halftime show....I look forward to that also HOT.  No offense, but I look forward to kickoff just a little more!

Link to comment
Share on other sites

Actually, that's not quite correct.

The source code for the countdown is counting down to "7:30pm EST" ... since we are in EDT, that adds an hour to make it 8:30pm in the calculations.  Not sure why they put 7:30pm.

Here is the actual code:

<SCRIPT>
var eventdate = new Date("September 1, 2007 19:30:00 EST");
  setTimeout("countdown()",500);
 function toSt(n)
 {s=""
  if(n<10) s+="0"
  return s+n.toString();
 } 
 function countdown()
 {cl=document.clock;
  d=new Date();
  count=Math.floor((eventdate.getTime()-d.getTime())/1000);
  if(count<=0)
    {cl.days.value="";
     cl.hours.value="";
     cl.mins.value="";
     cl.secs.value="";
     return;
    }
  document.getElementById("secs").innerHTML=toSt(count%60);
  count=Math.floor(count/60);
  document.getElementById("mins").innerHTML=toSt(count%60);
  count=Math.floor(count/60);
  document.getElementById("hours").innerHTML=toSt(count%24);
  count=Math.floor(count/24);
  document.getElementById("days").innerHTML=count; 
  setTimeout("countdown()",500);
 }
</SCRIPT>

Link to comment
Share on other sites


  • Group:  Bull Backers
  • Topic Count:  0
  • Content Count:  894
  • Reputation:   0
  • Days Won:  0
  • Joined:  09/08/2005

Thanks for the clarification Jim. Guess we'll just have to wait and see when they release the official time.

Link to comment
Share on other sites


  • Group:  Member
  • Topic Count:  0
  • Content Count:  9,038
  • Reputation:   101
  • Days Won:  1
  • Joined:  12/18/2006

Maybe the web designers are UCiF grads...

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

It appears you are using ad blocking tools.  This site is supported through ads.  Please disable in order to enjoy full access to The Bulls Pen.  Registration is free and reduces ads.