July 29, 200520 yr Posters, What does everyone think of having a trade countdown timer on the Inside Beat page? It could be at the top of the page but I have no idea how to write the script for it and figured if it was something people would be in favor of, somebody might know how to do it. I know CBS Sportsline has a counter on their page so I'm not sure if you could snag that code or anything. I want to make sure its not going to drive anyone crazy in the process. Repsond so we could take an informal poll to gauge interest.
July 29, 200520 yr QUOTE(ceffa2000 @ Jul 29, 2005 -> 10:12 AM) Posters, What does everyone think of having a trade countdown timer on the Inside Beat page? It could be at the top of the page but I have no idea how to write the script for it and figured if it was something people would be in favor of, somebody might know how to do it. I know CBS Sportsline has a counter on their page so I'm not sure if you could snag that code or anything. I want to make sure its not going to drive anyone crazy in the process. Repsond so we could take an informal poll to gauge interest. that would be cool i guess.
July 29, 200520 yr I believe this is the java code or whatever that CBS Sportsline has: <!-- START COUNTDOWN --> <!-- .clockFace, .clockTxt {font-family:arial,helvetica,sans-serif;font-size: 11px;color:#000000;} .clocklabel {font-family:arial,helvetica,sans-serif;font-size: 11px;color:#26248E;} .clockborder {border:1px solid #26248E;} --> TRADE DEADLINE: days hrs min sec <!--tr> AD IMAGE GOES HERE> <script language="javascript"> var nTime; // Date.UTC(YYYY, MM, DD[, hh[, mm[, ss[, ms]]]]) // TARGET DATE var Tyear=2005; var Tmonth=7; //ex. Jan.=1, Feb.=2 var Tday=31; var Thour=16; var Tmin=0; var Tsec=0; var Tms=0; // adjust for EST Tmonth = Tmonth-1; Thour=Thour+4; var nTarget = Date.UTC(Tyear, Tmonth, Tday, Thour, Tmin, Tsec, Tms); function drawCountdown(layer,text) { if (DOM && document.getElementById(layer)) { document.getElementById(layer).innerHTML = text; } else if (IE && document.all[layer]) { document.all[layer].innerHTML = text; } } function Tick() { var dNow = new Date(); nTime = nTarget - dNow.valueOf(); // milliseconds until target if (nTime nTime = Math.floor(nTime / 1000); // seconds until target // Display("cdDay2", "cdDay1", "cdDay0", 86400); // seconds per day Display(null, "cdDay1", "cdDay0", 86400); // seconds per day Display(null, "cdHour1", "cdHour0", 3600); // seconds per hour Display(null, "cdMinute1", "cdMinute0", 60); // seconds per minute Display(null, "cdSecond1", "cdSecond0", 1); // seconds per second } function Display(el2, el1, el0, nDivisor) { var nValue = (nTime - (nTime %= nDivisor)) / nDivisor; drawCountdown(el0,(nValue % 10)); nValue = Math.floor(nValue / 10); drawCountdown(el1,(nValue % 10)); if (el2) { nValue = Math.floor(nValue / 10); drawCountdown(el2,(nValue % 10)); } } if (IE || DOM) { Tick(); window.setInterval('Tick()', 1000); } <!-- END COUNTDOWN -->
July 29, 200520 yr QUOTE(ceffa2000 @ Jul 29, 2005 -> 11:32 AM) Anybody want to put it into action? SS2K5? SS2K5 is on the retired list.
July 29, 200520 yr Author QUOTE(kyyle23 @ Jul 29, 2005 -> 11:33 AM) SS2K5 is on the retired list. Not sure what that means, but ok. Anybody else?
July 29, 200520 yr QUOTE(ceffa2000 @ Jul 29, 2005 -> 11:35 AM) Not sure what that means, but ok. Anybody else? he is no longer an admin
July 29, 200520 yr QUOTE(ScottPodRulez22 @ Jul 29, 2005 -> 10:36 AM) he is no longer an admin Why did you quit SS2k5? WHYYYYYYYY????????
July 29, 200520 yr QUOTE(nitetrain8601 @ Jul 29, 2005 -> 12:51 PM) Why did you quit SS2k5? WHYYYYYYYY???????? Probably because he is sick of doing trivial things like adding a countdown clock to the site
July 29, 200520 yr Author QUOTE(kyyle23 @ Jul 29, 2005 -> 01:34 PM) Probably because he is sick of doing trivial things like adding a countdown clock to the site Whole lotta love. Thanks.
July 29, 200520 yr I'm iffy about adding a countdown clock because it's one more thing to f*** up the site. I dunno, it's a possibility.
July 29, 200520 yr QUOTE(Heads22 @ Jul 29, 2005 -> 02:29 PM) I'm iffy about adding a countdown clock because it's one more thing to f*** up the site. I dunno, it's a possibility. God knows that's the last thing needed.
July 29, 200520 yr QUOTE(Heads22 @ Jul 29, 2005 -> 02:29 PM) I'm iffy about adding a countdown clock because it's one more thing to f*** up the site. I dunno, it's a possibility. Just make sure you don't let Gage do it.
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.